diff options
author | Gerald Carter <jerry@samba.org> | 2007-05-30 14:53:10 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:22:58 -0500 |
commit | 4eab22b8938dfe846f7a12002c8ff8ae158acecd (patch) | |
tree | b343e67a50cf4030d6f40f1cfd410b503a2674f0 | |
parent | 9f3b3b3bd60dcd3f72427de993e72eb6b0ac43e3 (diff) | |
download | samba-4eab22b8938dfe846f7a12002c8ff8ae158acecd.tar.gz samba-4eab22b8938dfe846f7a12002c8ff8ae158acecd.tar.bz2 samba-4eab22b8938dfe846f7a12002c8ff8ae158acecd.zip |
r23242: BUG 4671: Fix Makefile syntax error when SMBMOUNT_PROGS is not defined
(This used to be commit 592e73dc31672c993aad5afde73b1c43dd31eed2)
-rw-r--r-- | source3/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in index c52afd9842..07735c0e80 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -177,7 +177,8 @@ TORTURE_PROGS = bin/smbtorture@EXEEXT@ bin/msgtest@EXEEXT@ \ bin/pdbtest@EXEEXT@ bin/talloctort@EXEEXT@ bin/replacetort@EXEEXT@ \ bin/tdbtorture@EXEEXT@ -BIN_PROGS = $(BIN_PROGS1) $(BIN_PROGS2) $(BIN_PROGS3) $(BIN_PROGS4) @EXTRA_BIN_PROGS@ @SMBMOUNT_PROGS@ +BIN_PROGS = @EXTRA_BIN_PROGS@ @SMBMOUNT_PROGS@ \ + $(BIN_PROGS1) $(BIN_PROGS2) $(BIN_PROGS3) $(BIN_PROGS4) EVERYTHING_PROGS = bin/debug2html@EXEEXT@ bin/smbfilter@EXEEXT@ \ bin/talloctort@EXEEXT@ bin/replacetort@EXEEXT@ \ |