diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2019-06-07 14:38:43 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2019-06-07 14:38:43 +0000 |
commit | c3660e2042eca935478e0c9490a82c2f413e37bb (patch) | |
tree | 90f6568ec091ed196938d296ec2f066993c16e80 /distrib | |
parent | e2ee0152bd87aa50afb9bbb0b030f51da987934c (diff) |
Add -lz to the library list, since one architecture (armv7) needs it and
there is no downside for others.
Diffstat (limited to 'distrib')
-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 549852219c3..74c830e3492 100644 --- a/distrib/miniroot/makeconf.awk +++ b/distrib/miniroot/makeconf.awk @@ -1,4 +1,4 @@ -# $OpenBSD: makeconf.awk,v 1.27 2019/04/28 16:14:48 deraadt Exp $ +# $OpenBSD: makeconf.awk,v 1.28 2019/06/07 14:38:42 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 -lm -ltls -lssl -lcrypto -levent -lc"; + libs = "libs -lstubs -lutil -lm -ltls -lssl -lcrypto -levent -lc -lz"; } $1 == "LIBS" { |