diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2010-10-17 21:33:54 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2010-10-17 21:33:54 +0000 |
commit | 0158485cf8b47a7797d4b0a56c68e5173bcfbf5e (patch) | |
tree | 2fa24f547f4dc9c27a7136320222ffcd7c0f49db /distrib/miniroot | |
parent | d9fd447d5a2ed71bf0cee4514add94bb8dee8cb1 (diff) |
there is no need for -ll at link time
Diffstat (limited to 'distrib/miniroot')
-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 4ba2275800b..e661ae30ef8 100644 --- a/distrib/miniroot/makeconf.awk +++ b/distrib/miniroot/makeconf.awk @@ -1,4 +1,4 @@ -# $OpenBSD: makeconf.awk,v 1.16 2010/10/15 10:18:42 jsg Exp $ +# $OpenBSD: makeconf.awk,v 1.17 2010/10/17 21:33:53 deraadt Exp $ # $NetBSD: makeconf.awk,v 1.3 1996/05/04 15:45:32 pk Exp $ # @@ -7,7 +7,7 @@ BEGIN { printf("#\n# This file is automatically generated by `makeconf'\n#\n\n"); - libs = "libs -lstubs -lutil -lotermcap -ll -lm"; + libs = "libs -lstubs -lutil -lotermcap -lm"; } $1 == "LIBS" { |