summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2019-04-28 16:14:48 +0000
committerderaadt <deraadt@openbsd.org>2019-04-28 16:14:48 +0000
commit08bb6dc6be50273ea10366ef34bb5b383f11a1f5 (patch)
tree674c488bcefbb11adc03016dd4c898595a065c22
parentCull BSDRD variables which are always bsd.rd (diff)
downloadwireguard-openbsd-08bb6dc6be50273ea10366ef34bb5b383f11a1f5.tar.xz
wireguard-openbsd-08bb6dc6be50273ea10366ef34bb5b383f11a1f5.zip
Oops; hardcode instbin directly
-rw-r--r--distrib/miniroot/makeconf.awk4
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];