diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-05-16 01:45:06 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-05-16 01:45:06 +0000 |
commit | c3420d8c248faab5e51e8fb72b2ca9b135f1691d (patch) | |
tree | 50b7255ab0dc455f5d4ee0a2599f503d86407b94 /distrib/alpha/list2sh.awk | |
parent | 894788b5c81d1f7b3a4b57a1e926d25ebde068b4 (diff) |
Updated based on i386 version. Everything should really just use
a single version of this script.
Diffstat (limited to 'distrib/alpha/list2sh.awk')
-rw-r--r-- | distrib/alpha/list2sh.awk | 36 |
1 files changed, 34 insertions, 2 deletions
diff --git a/distrib/alpha/list2sh.awk b/distrib/alpha/list2sh.awk index a97df93aaea..f0176022848 100644 --- a/distrib/alpha/list2sh.awk +++ b/distrib/alpha/list2sh.awk @@ -1,4 +1,4 @@ -# $OpenBSD: list2sh.awk,v 1.1 1997/05/07 12:46:50 niklas Exp $ +# $OpenBSD: list2sh.awk,v 1.2 1997/05/16 01:45:05 millert Exp $ BEGIN { printf("cd ${CURDIR}\n"); @@ -10,12 +10,44 @@ BEGIN { } $1 == "COPY" { printf("echo '%s'\n", $0); + printf("rm -fr ${TARGDIR}/%s\n", $3); printf("cp %s ${TARGDIR}/%s\n", $2, $3); next; } $1 == "LINK" { printf("echo '%s'\n", $0); - printf("(cd ${TARGDIR}; ln %s %s)\n", $2, $3); + for (i = 3; i <= NF; i++) { + printf("rm -f ${TARGDIR}/%s\n", $i); + printf("(cd ${TARGDIR}; ln %s %s)\n", $2, $i); + } + next; +} +$1 == "SYMLINK" { + printf("echo '%s'\n", $0); + for (i = 3; i <= NF; i++) { + printf("rm -f ${TARGDIR}/%s\n", $i); + printf("(cd ${TARGDIR}; ln -s %s %s)\n", $2, $i); + } + next; +} +$1 == "ARGVLINK" { + # crunchgen directive; ignored here + next; +} +$1 == "SRCDIRS" { + # crunchgen directive; ignored here + next; +} +$1 == "CRUNCHSPECIAL" { + # crunchgen directive; ignored here + next; +} +$1 == "COPYDIR" { + printf("echo '%s'\n", $0); + printf("(cd ${TARGDIR}/%s && find . ! -name . | xargs /bin/rm -rf)\n", + $3); + printf("(cd %s && find . ! -name . | cpio -pdamu ${TARGDIR}/%s)\n", $2, + $3); next; } $1 == "SPECIAL" { |