diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2003-04-07 11:46:44 +0000 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2003-04-07 11:46:44 +0000 |
commit | e5f2a779717f463b522049d5ed87c4c2d0ff32c7 (patch) | |
tree | 6255e6057b148f49ba51b3188034a5ae00e4a20f | |
parent | a8f7eaee5150e624316b14c04a8a9ec480b09dec (diff) | |
download | samba-e5f2a779717f463b522049d5ed87c4c2d0ff32c7.tar.gz samba-e5f2a779717f463b522049d5ed87c4c2d0ff32c7.tar.bz2 samba-e5f2a779717f463b522049d5ed87c4c2d0ff32c7.zip |
Fix build of static libsmbclient
(This used to be commit 8f2975cc94c766b184bbbca276d5a05801dc835a)
-rw-r--r-- | source3/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in index 4e7de666b2..2ba1fa6ecb 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -884,11 +884,11 @@ bin/smbwrapper.32.@SHLIBEXT@: $(PICOBJS32) bin/libsmbclient.@SHLIBEXT@: $(LIBSMBCLIENT_PICOBJS) @echo Linking libsmbclient shared library $@ $(SHLD) $(LDSHFLAGS) -o $@ $(LIBSMBCLIENT_PICOBJS) $(LDFLAGS) $(LIBS) \ - @SONAMEFLAG@`basename $@`.$(LIBSMBCLIENT_MAJOR) $(KRB5LIBS) + $(KRB5LIBS) @SONAMEFLAG@`basename $@`.$(LIBSMBCLIENT_MAJOR) bin/libsmbclient.a: $(LIBSMBCLIENT_PICOBJS) @echo Linking libsmbclient non-shared library $@ - -$(AR) -rc $@ $(LIBSMBCLIENT_PICOBJS) $(KRB5LIBS) + -$(AR) -rc $@ $(LIBSMBCLIENT_PICOBJS) bin/libbigballofmud.@SHLIBEXT@: $(LIBBIGBALLOFMUD_PICOBJS) @echo Linking bigballofmud shared library $@ |