diff options
-rw-r--r-- | distrib/miniroot/makeconf.awk | 5 | ||||
-rw-r--r-- | distrib/special/Makefile | 4 |
2 files changed, 5 insertions, 4 deletions
diff --git a/distrib/miniroot/makeconf.awk b/distrib/miniroot/makeconf.awk index 973c7ebb947..5687c83491c 100644 --- a/distrib/miniroot/makeconf.awk +++ b/distrib/miniroot/makeconf.awk @@ -1,4 +1,4 @@ -# $OpenBSD: makeconf.awk,v 1.14 2003/12/16 22:41:40 henning Exp $ +# $OpenBSD: makeconf.awk,v 1.15 2005/08/04 16:35:03 espie 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 -ldes"; + libs = "libs -lstubs -lutil -lotermcap -ll -lm -ldes"; } $1 == "LIBS" { @@ -64,6 +64,7 @@ END { printf("ln %s %s\n", p, links[i,p]); } printf("\n%s\n\n", libs); + printf("libdirs distrib/special/libstubs\n"); # `special' directives for (s in specials) { diff --git a/distrib/special/Makefile b/distrib/special/Makefile index 5c478ed81fc..391f1b726bc 100644 --- a/distrib/special/Makefile +++ b/distrib/special/Makefile @@ -1,6 +1,6 @@ -# $OpenBSD: Makefile,v 1.13 2005/08/02 11:16:44 espie Exp $ +# $OpenBSD: Makefile,v 1.14 2005/08/04 16:35:03 espie Exp $ SUBDIR= dd ftp pppd rsh dhclient init dmesg grep kbd less more \ - gzip ccdconfig ifconfig + gzip ccdconfig ifconfig libstubs .include <bsd.subdir.mk> |