summaryrefslogtreecommitdiff
path: root/source3/Makefile.in
diff options
context:
space:
mode:
authorRichard Sharpe <sharpe@samba.org>2001-06-30 01:40:51 +0000
committerRichard Sharpe <sharpe@samba.org>2001-06-30 01:40:51 +0000
commit51b83860a17cc04d7a7cab345b24af88e14f805e (patch)
tree5efb5598c13395746696acd611365364df5e9cb9 /source3/Makefile.in
parent7e7c258e0b281acf99b3f538cd46f42ce5dfa486 (diff)
downloadsamba-51b83860a17cc04d7a7cab345b24af88e14f805e.tar.gz
samba-51b83860a17cc04d7a7cab345b24af88e14f805e.tar.bz2
samba-51b83860a17cc04d7a7cab345b24af88e14f805e.zip
Modified Makefile.in to work properly. Define BLDSHARED as a variable in the makefile now.
(This used to be commit 332f646fdc25ae4fe3797ad6c85d4637f0dba0e3)
Diffstat (limited to 'source3/Makefile.in')
-rw-r--r--source3/Makefile.in5
1 files changed, 4 insertions, 1 deletions
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