diff options
author | 1996-05-14 18:30:32 +0000 | |
---|---|---|
committer | 1996-05-14 18:30:32 +0000 | |
commit | b4ec25ff8d51bd5a54f55c8c7a324c8319f2a726 (patch) | |
tree | 3cac076f086f201518494549ed51df91f735d8b4 | |
parent | fix NetBSD PR#1145. (diff) | |
download | wireguard-openbsd-b4ec25ff8d51bd5a54f55c8c7a324c8319f2a726.tar.xz wireguard-openbsd-b4ec25ff8d51bd5a54f55c8c7a324c8319f2a726.zip |
fix NetBSD PR#1154
-rw-r--r-- | distrib/i386/floppies/list2sh.awk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/distrib/i386/floppies/list2sh.awk b/distrib/i386/floppies/list2sh.awk index 91ce5a6879d..bf240351103 100644 --- a/distrib/i386/floppies/list2sh.awk +++ b/distrib/i386/floppies/list2sh.awk @@ -1,4 +1,4 @@ -# $OpenBSD: list2sh.awk,v 1.2 1996/04/25 21:28:00 niklas Exp $ +# $OpenBSD: list2sh.awk,v 1.3 1996/05/14 18:30:32 mickey Exp $ BEGIN { printf("cd ${CURDIR}\n"); @@ -10,7 +10,7 @@ BEGIN { } $1 == "COPY" { printf("echo '%s'\n", $0); - printf("rm -f ${TARGDIR}/%s\n", $3); + printf("rm -fr ${TARGDIR}/%s\n", $3); printf("cp %s ${TARGDIR}/%s\n", $2, $3); next; } |