diff options
author | Tim Potter <tpot@samba.org> | 2003-07-11 03:32:11 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2003-07-11 03:32:11 +0000 |
commit | 5a02bb60e0d4977e4239e5ff6cd49d7c1afa7454 (patch) | |
tree | fc3e38d2bc8a7becff671fb70bf71ef9d294ff09 | |
parent | d1ea2f9957a03193a84976ba8f5e40657a7ac52a (diff) | |
download | samba-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.in | 3 |
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@ |