diff options
author | Andrew Tridgell <tridge@samba.org> | 2001-06-28 03:03:11 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2001-06-28 03:03:11 +0000 |
commit | a2c81f1aed2120c4f85fb44734e89446c1ba105c (patch) | |
tree | 946beb0b8d191a5d523f516d1b9406d2dda69204 | |
parent | 8f91108faf42fbaedd7ed8bbfb107f216fee1bbe (diff) | |
download | samba-a2c81f1aed2120c4f85fb44734e89446c1ba105c.tar.gz samba-a2c81f1aed2120c4f85fb44734e89446c1ba105c.tar.bz2 samba-a2c81f1aed2120c4f85fb44734e89446c1ba105c.zip |
temporarily made smbclient a non-error target so that builds will succeed when it fails. This will give richard a chance to fix problems without breaking the tree
(This used to be commit 83d0dc4b53231b05588b7341540c0e4ba1f430b1)
-rw-r--r-- | source3/Makefile.in | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in index 5f695d1c99..0801efb5ec 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -396,11 +396,7 @@ WINBIND_NSS_PICOBJS = $(WINBIND_NSS_OBJ:.o=.po) ###################################################################### # now the rules... ###################################################################### - -all : CHECK include/proto.h $(SPROGS) $(PROGS) bin/libsmbclient.so - -# removed SHLIBS until it compiles on more platforms (tridge) -# $(SHLIBS) +all : CHECK include/proto.h $(SPROGS) $(PROGS) $(SHLIBS) pam_smbpass : CHECK bin/pam_smbpass.@SHLIBEXT@ @@ -616,11 +612,11 @@ bin/smbwrapper.32.@SHLIBEXT@: $(PICOBJS32) bin/libsmbclient.so: $(LIBSMBCLIENT_PICOBJS) @echo Linking libsmbclient shared library $@ - @$(LD) @LDSHFLAGS@ -o $@ $(LIBSMBCLIENT_PICOBJS) $(LIBS) # Anything else? + -$(LD) @LDSHFLAGS@ -o $@ $(LIBSMBCLIENT_PICOBJS) $(LIBS) # Anything else? client/testsmbc: client/testsmbc.o bin/libsmbclient.so @echo Linking testsmbc - @$(CC) $(CFLAGS) -o $@ client/testsmbc.o -Lbin -lsmbclient + -$(CC) $(CFLAGS) -o $@ client/testsmbc.o -Lbin -lsmbclient bin/smbsh: $(SMBSH_OBJ) bin/.dummy @echo Linking $@ @@ -674,9 +670,9 @@ installswat: installdirs @$(SHELL) $(srcdir)/script/installswat.sh $(SWATDIR) $(srcdir) installclientlib: - @$(INSTALLCMD) bin/libsmbclient.so $(LIBDIR) - @$(INSTALLCMD) -d ${prefix}/include - @$(INSTALLCMD) include/libsmbclient.h ${prefix}/include + -$(INSTALLCMD) bin/libsmbclient.so $(LIBDIR) + -$(INSTALLCMD) -d ${prefix}/include + -$(INSTALLCMD) include/libsmbclient.h ${prefix}/include # revert to the previously installed version revert: |