From 6db4e7612070b8df8d126b596cb6665f0a582db0 Mon Sep 17 00:00:00 2001 From: Richard Sharpe Date: Sat, 30 Jun 2001 03:01:09 +0000 Subject: Fix another small problem with Makefile.in ... not doing the correct check for whether or not we should build a shared library. (This used to be commit 09837044a2aa47a61d635316afa38645855db512) --- source3/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/Makefile.in') diff --git a/source3/Makefile.in b/source3/Makefile.in index 7f507057bc..57806a6f89 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -614,7 +614,7 @@ bin/smbwrapper.32.@SHLIBEXT@: $(PICOBJS32) @$(LD) -32 @LDSHFLAGS@ -o $@ $(PICOBJS32) $(LIBS) bin/libsmbclient: $(LIBSMBCLIENT_PICOBJS) - -if [ $(BLDSHARED) ]; then \ + -if [ $(BLDSHARED) = true ]; then \ echo Linking libsmbclient shared library $@.@SHLIBEXT@; \ $(LD) @LDSHFLAGS@ -o $@.@SHLIBEXT@ $(LIBSMBCLIENT_PICOBJS) $(LIBS); \ fi -- cgit