summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2003-07-11 03:32:11 +0000
committerTim Potter <tpot@samba.org>2003-07-11 03:32:11 +0000
commit5a02bb60e0d4977e4239e5ff6cd49d7c1afa7454 (patch)
treefc3e38d2bc8a7becff671fb70bf71ef9d294ff09
parentd1ea2f9957a03193a84976ba8f5e40657a7ac52a (diff)
downloadsamba-5a02bb60e0d4977e4239e5ff6cd49d7c1afa7454.tar.gz
samba-5a02bb60e0d4977e4239e5ff6cd49d7c1afa7454.tar.bz2
samba-5a02bb60e0d4977e4239e5ff6cd49d7c1afa7454.zip
Fix for bug 203. Avoid using an autoconf expanded variable preceeded by a backslash
in case the variable is empty. This apparently confuses some makes. (This used to be commit 1e4043d54c2135b09be8c329f50f132779b4b776)
-rw-r--r--source3/Makefile.in3
1 files changed, 1 insertions, 2 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in
index 1ba1ac0776..8ad43bcbca 100644
--- a/source3/Makefile.in
+++ b/source3/Makefile.in
@@ -120,8 +120,7 @@ PATH_FLAGS = $(PATH_FLAGS6) $(PASSWD_FLAGS)
# Note that all executable programs now provide for an optional executable suffix.
-SBIN_PROGS = bin/smbd@EXEEXT@ bin/nmbd@EXEEXT@ bin/swat@EXEEXT@ \
- @EXTRA_SBIN_PROGS@
+SBIN_PROGS = bin/smbd@EXEEXT@ bin/nmbd@EXEEXT@ bin/swat@EXEEXT@ @EXTRA_SBIN_PROGS@
BIN_PROGS1 = bin/smbclient@EXEEXT@ bin/net@EXEEXT@ bin/smbspool@EXEEXT@ \
bin/testparm@EXEEXT@ bin/testprns@EXEEXT@ bin/smbstatus@EXEEXT@