diff options
author | 2003-05-18 07:18:27 +0000 | |
---|---|---|
committer | 2003-05-18 07:18:27 +0000 | |
commit | 4e2210249042ef819044c78163e6eaab9993fc5a (patch) | |
tree | 224ed5cea3fd42ec162b264a06fb676cccaa30a7 | |
parent | Add 'machine sysregs' command to ddb for 1386; show idtr, gdtr, ldtr, tr (diff) | |
download | wireguard-openbsd-4e2210249042ef819044c78163e6eaab9993fc5a.tar.xz wireguard-openbsd-4e2210249042ef819044c78163e6eaab9993fc5a.zip |
Don't link with -lkrb.; Found by mickey@, ok todd@
-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" { |