diff options
author | Herb Lewis <herb@samba.org> | 2001-12-11 19:32:46 +0000 |
---|---|---|
committer | Herb Lewis <herb@samba.org> | 2001-12-11 19:32:46 +0000 |
commit | 683a40e906c3c2827545624d754867a923efa611 (patch) | |
tree | dda40b9ed54e867a2300196314cca4fdc0dcc455 | |
parent | a0c6a63bb602cd50d04fefebcc8ef3ad3c0bb211 (diff) | |
download | samba-683a40e906c3c2827545624d754867a923efa611.tar.gz samba-683a40e906c3c2827545624d754867a923efa611.tar.xz samba-683a40e906c3c2827545624d754867a923efa611.zip |
-Wl is not a valid flag to the loader. It is a flag for the compiler to
tell it to do the load pass.
-rw-r--r-- | source/Makefile.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source/Makefile.in b/source/Makefile.in index 7faf79b3b9e..cb6cd2cab71 100644 --- a/source/Makefile.in +++ b/source/Makefile.in @@ -610,11 +610,11 @@ bin/smbw_sample: $(SMBW_OBJ) utils/smbw_sample.o bin/.dummy bin/smbwrapper.@SHLIBEXT@: $(PICOBJS) @echo Linking shared library $@ - @$(LD) @LDSHFLAGS@ -o $@ $(PICOBJS) $(LIBS) + @$(LINK) @LDSHFLAGS@ -o $@ $(PICOBJS) $(LIBS) bin/smbwrapper.32.@SHLIBEXT@: $(PICOBJS32) @echo Linking shared library $@ - @$(LD) -32 @LDSHFLAGS@ -o $@ $(PICOBJS32) $(LIBS) + @$(LINK) -32 @LDSHFLAGS@ -o $@ $(PICOBJS32) $(LIBS) libsmbclient: $(LIBSMBCLIENT_PICOBJS) @echo Linking libsmbclient shared library bin/$@.@SHLIBEXT@ @@ -629,11 +629,11 @@ bin/smbsh: $(SMBSH_OBJ) bin/.dummy bin/pam_smbpass.@SHLIBEXT@: $(PAM_SMBPASS_OBJ) @echo Linking shared library $@ - $(LD) @LDSHFLAGS@ -symbolic -o $@ $(PAM_SMBPASS_OBJ) -lpam $(LIBS) -lc + $(LINK) @LDSHFLAGS@ -symbolic -o $@ $(PAM_SMBPASS_OBJ) -lpam $(LIBS) -lc nsswitch/libnss_wins.so: $(NSS_OBJ) @echo "Linking $@" - @$(LD) @LDSHFLAGS@ -o $@ $(NSS_OBJ) -lc + @$(LINK) @LDSHFLAGS@ -o $@ $(NSS_OBJ) -lc bin/winbindd: $(WINBINDD_OBJ) bin/.dummy @echo Linking $@ |