diff options
author | Richard Sharpe <sharpe@samba.org> | 2001-06-30 03:01:09 +0000 |
---|---|---|
committer | Richard Sharpe <sharpe@samba.org> | 2001-06-30 03:01:09 +0000 |
commit | 6db4e7612070b8df8d126b596cb6665f0a582db0 (patch) | |
tree | 1cb6f84271ffb79ef5adff3da24c4ae09cc57f6e /source3 | |
parent | 13bd0453ee979cb0eb4d18431b901ab6ca2199a0 (diff) | |
download | samba-6db4e7612070b8df8d126b596cb6665f0a582db0.tar.gz samba-6db4e7612070b8df8d126b596cb6665f0a582db0.tar.bz2 samba-6db4e7612070b8df8d126b596cb6665f0a582db0.zip |
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)
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 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 |