diff options
author | 2015-11-14 23:44:26 +0000 | |
---|---|---|
committer | 2015-11-14 23:44:26 +0000 | |
commit | 3fa821d4e62f3b57bd4e309b87ef683eccdbc7fb (patch) | |
tree | cd7fe78574612b5387f5009a518ab9c54564c489 | |
parent | Copy the parts of libocurses that are needed directly to here. We (diff) | |
download | wireguard-openbsd-3fa821d4e62f3b57bd4e309b87ef683eccdbc7fb.tar.xz wireguard-openbsd-3fa821d4e62f3b57bd4e309b87ef683eccdbc7fb.zip |
no longer need -locurses, since more is selfcontained
-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 f380f83cd6d..45316518fbd 100644 --- a/distrib/miniroot/makeconf.awk +++ b/distrib/miniroot/makeconf.awk @@ -1,4 +1,4 @@ -# $OpenBSD: makeconf.awk,v 1.21 2014/02/21 19:14:23 deraadt Exp $ +# $OpenBSD: makeconf.awk,v 1.22 2015/11/14 23:44:26 deraadt Exp $ # # generate crunchgen(1) configuration file from `list' spec. @@ -6,7 +6,7 @@ BEGIN { printf("#\n# This file is automatically generated by `makeconf'\n#\n\n"); - libs = "libs -lstubs -lutil -locurses -lm -lc"; + libs = "libs -lstubs -lutil -lm -lc"; } $1 == "LIBS" { |