diff options
author | Magnus Holmberg <mho@cvs.openbsd.org> | 2003-05-18 07:18:28 +0000 |
---|---|---|
committer | Magnus Holmberg <mho@cvs.openbsd.org> | 2003-05-18 07:18:28 +0000 |
commit | c972530157788b42fa064e1be6ff8ca9e125fbfd (patch) | |
tree | 429fccd2191e2b84e17563948f7bcad9c6229df5 /distrib | |
parent | 061b70250f637e58737334e11c088df97d2031fa (diff) |
Don't link with -lkrb.; Found by mickey@, ok todd@
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 b04aa712035..a53f1d6271c 100644 --- a/distrib/miniroot/makeconf.awk +++ b/distrib/miniroot/makeconf.awk @@ -1,4 +1,4 @@ -# $OpenBSD: makeconf.awk,v 1.11 2003/05/06 00:23:02 millert Exp $ +# $OpenBSD: makeconf.awk,v 1.12 2003/05/18 07:18:27 mho 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 -lutil -lotermcap -ll -lm -lkrb -ldes"; + libs = "libs -lutil -lotermcap -ll -lm -ldes"; } $1 == "LIBS" { |