From: Gerald Carter Date: Wed, 30 May 2007 14:53:10 +0000 (+0000) Subject: r23242: BUG 4671: Fix Makefile syntax error when SMBMOUNT_PROGS is not defined X-Git-Tag: samba-misc-tags/initial-v3-0-unstable~315 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=592e73dc31672c993aad5afde73b1c43dd31eed2;p=thirdparty%2Fsamba.git r23242: BUG 4671: Fix Makefile syntax error when SMBMOUNT_PROGS is not defined --- diff --git a/source/Makefile.in b/source/Makefile.in index c52afd98424..07735c0e802 100644 --- a/source/Makefile.in +++ b/source/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@ \