diff options
author | Andrew Tridgell <tridge@samba.org> | 2000-01-24 03:39:24 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2000-01-24 03:39:24 +0000 |
commit | 43f1d804af4034666d7ff8cbdda36dde357569ae (patch) | |
tree | 3494274a8d315366754bebc3f776e3393ee2af39 /source3 | |
parent | d91bfabc5df7226cc1b0da231e18fd16c8807a25 (diff) | |
download | samba-43f1d804af4034666d7ff8cbdda36dde357569ae.tar.gz samba-43f1d804af4034666d7ff8cbdda36dde357569ae.tar.bz2 samba-43f1d804af4034666d7ff8cbdda36dde357569ae.zip |
we need -lc when making shared objects or glibc doesn't do its magic
binding for stat()
(This used to be commit b52e60d5685b6ce9e581b5598b2725a4bf88ab06)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in index 2d916559ef..31594bbc8f 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -464,7 +464,7 @@ bin/smbsh: $(SMBSH_OBJ) bin/.dummy nsswitch/libnss_wins.so: $(NSS_OBJ) @echo "Linking $@" - @$(LD) @LDSHFLAGS@ -o $@ $(NSS_OBJ) + @$(LD) @LDSHFLAGS@ -o $@ $(NSS_OBJ) -lc nsswitch: nsswitch/libnss_wins.so |