diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-12-12 03:10:14 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-12-12 03:10:14 +0000 |
commit | 00020640fc271aae2c7b1d8c5ae92fbb7efe328d (patch) | |
tree | 61209cc1df228df4ae580c5caab1f420f03105ab /Makefile | |
parent | 65fe2cc0968003360c30abba2826375821be4d76 (diff) |
Add in a stub libnsl library to make stupid configure scripts
(i.e. openssh) do the right thing when used with uClibc's gcc
wrapper (which does not currently prevent system libraries from
leaking into the link).
-Erik
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -32,7 +32,7 @@ noconfig_targets := menuconfig config oldconfig randconfig \ TOPDIR=./ include Rules.mak -DIRS = extra ldso libc libcrypt libresolv libutil libm libpthread +DIRS = extra ldso libc libcrypt libresolv libnsl libutil libm libpthread ifdef include_config @@ -47,6 +47,7 @@ ifeq ($(strip $(HAVE_SHARED)),y) @$(MAKE) -C ldso shared @$(MAKE) -C libcrypt shared @$(MAKE) -C libresolv shared + @$(MAKE) -C libnsl shared @$(MAKE) -C libutil shared @$(MAKE) -C libm shared @$(MAKE) -C libpthread shared |