diff options
author | Thorsten Lockert <tholo@cvs.openbsd.org> | 1997-05-08 04:56:01 +0000 |
---|---|---|
committer | Thorsten Lockert <tholo@cvs.openbsd.org> | 1997-05-08 04:56:01 +0000 |
commit | 905915a67acd5efc050cedc60c0a12ee576176a0 (patch) | |
tree | 5c70022b84b9763a99f5cbe0801167abd65e2b20 /distrib/i386 | |
parent | 0cc0617405d8d2048fef3907711b03ac23fb7924 (diff) |
Ignore some more pseudo-targets
Diffstat (limited to 'distrib/i386')
-rw-r--r-- | distrib/i386/floppies/list2sh.awk | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/distrib/i386/floppies/list2sh.awk b/distrib/i386/floppies/list2sh.awk index bf240351103..8b1f02e1459 100644 --- a/distrib/i386/floppies/list2sh.awk +++ b/distrib/i386/floppies/list2sh.awk @@ -1,4 +1,4 @@ -# $OpenBSD: list2sh.awk,v 1.3 1996/05/14 18:30:32 mickey Exp $ +# $OpenBSD: list2sh.awk,v 1.4 1997/05/08 04:56:00 tholo Exp $ BEGIN { printf("cd ${CURDIR}\n"); @@ -26,6 +26,18 @@ $1 == "SYMLINK" { printf("(cd ${TARGDIR}; ln -s %s %s)\n", $2, $3); 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", |