summaryrefslogtreecommitdiffstats
path: root/source/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
commit332f646fdc25ae4fe3797ad6c85d4637f0dba0e3 (patch)
tree0e5278415b6b9c676db0ac12e15bf9991544cf50 /source/Makefile.in
parent9585529455ae4a3e9b4dafc5f16286fabb052809 (diff)
downloadsamba-332f646fdc25ae4fe3797ad6c85d4637f0dba0e3.tar.gz
samba-332f646fdc25ae4fe3797ad6c85d4637f0dba0e3.tar.xz
samba-332f646fdc25ae4fe3797ad6c85d4637f0dba0e3.zip
Modified Makefile.in to work properly. Define BLDSHARED as a variable in the makefile now.
Diffstat (limited to 'source/Makefile.in')
-rw-r--r--source/Makefile.in5
1 files changed, 4 insertions, 1 deletions
diff --git a/source/Makefile.in b/source/Makefile.in
index 5b362d37a6c..7f507057bcf 100644
--- a/source/Makefile.in
+++ b/source/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