diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2019-04-28 16:14:49 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2019-04-28 16:14:49 +0000 |
commit | 1c0a19872cea3d4e2d7bc04ad91c55ff32eb04cc (patch) | |
tree | 3125098986c0138f6739c70a6f54ca611c8311b6 | |
parent | 7e4f5d824c89a3c14d6b2b60d405e2d81cdc58c5 (diff) |
Oops; hardcode instbin directly
-rw-r--r-- | distrib/miniroot/makeconf.awk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/distrib/miniroot/makeconf.awk b/distrib/miniroot/makeconf.awk index 8d6a1f6db60..549852219c3 100644 --- a/distrib/miniroot/makeconf.awk +++ b/distrib/miniroot/makeconf.awk @@ -1,4 +1,4 @@ -# $OpenBSD: makeconf.awk,v 1.26 2019/04/28 15:21:50 deraadt Exp $ +# $OpenBSD: makeconf.awk,v 1.27 2019/04/28 16:14:48 deraadt Exp $ # # generate crunchgen(1) configuration file from `list' spec. @@ -19,7 +19,7 @@ $1 == "SRCDIRS" { print; } -($1 == "LINK" || $1 == "SYMLINK") && index($2,instbin) { +($1 == "LINK" || $1 == "SYMLINK") && $2 == "instbin" { # find basenames for inclusion in crunchgen's `prog' and `ln' directives n = split($3, x, "/"); p = x[n]; |