From 51b83860a17cc04d7a7cab345b24af88e14f805e Mon Sep 17 00:00:00 2001 From: Richard Sharpe Date: Sat, 30 Jun 2001 01:40:51 +0000 Subject: Modified Makefile.in to work properly. Define BLDSHARED as a variable in the makefile now. (This used to be commit 332f646fdc25ae4fe3797ad6c85d4637f0dba0e3) --- source3/Makefile.in | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'source3/Makefile.in') diff --git a/source3/Makefile.in b/source3/Makefile.in index 5b362d37a6..7f507057bc 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -61,6 +61,9 @@ SWATDIR = @swatdir@ # the directory where lock files go LOCKDIR = @lockdir@ +# libsmbclient support here +BLDSHARED = @BLDSHARED@ + # The directory where code page definition files go CODEPAGEDIR = $(LIBDIR)/codepages @@ -611,7 +614,7 @@ bin/smbwrapper.32.@SHLIBEXT@: $(PICOBJS32) @$(LD) -32 @LDSHFLAGS@ -o $@ $(PICOBJS32) $(LIBS) bin/libsmbclient: $(LIBSMBCLIENT_PICOBJS) - -if [ @BLDSHARED@ ]; then \ + -if [ $(BLDSHARED) ]; then \ echo Linking libsmbclient shared library $@.@SHLIBEXT@; \ $(LD) @LDSHFLAGS@ -o $@.@SHLIBEXT@ $(LIBSMBCLIENT_PICOBJS) $(LIBS); \ fi -- cgit