summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsave2009-11-24 10:08:24 +0000
committersave2009-11-24 10:08:24 +0000
commitcf06a98dc4ab013f9bd996b1de335fd4685128c0 (patch)
tree00aef332ce1a7a5d4983596046eb70c20b1ad467
parent5f21c592b37dc8dba6eb21989afbb399188329a1 (diff)
cleo: corrected bundle makefile: quiet mode after with condition
git-svn-id: svn+ssh://pessac/svn/cesar/trunk@6460 017c9cb6-072f-447c-8318-d5b54f68fe89
-rw-r--r--cleopatre/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/cleopatre/Makefile b/cleopatre/Makefile
index 681e868f25..fca8d912aa 100644
--- a/cleopatre/Makefile
+++ b/cleopatre/Makefile
@@ -97,10 +97,10 @@ bundle-standalone:
$(Q)sed -i -e 's/\(BUNDLE_VERSION *= *\)\(.*\)/\1$(BUNDLE_VERSION)/' $(BUILDROOT_PATH)/target/device/Spidcom/Makefile.in
$(Q)mkdir -p $(BUNDLE_PLCBIN_PATH)
$(Q)cd $(BUNDLE_COMPILE_PATH) ; rm -rf $(UNUSE)
- [ "$(PLC_BINS)" = "" ] || $(Q)$(MAKE) $(PLC_BINS)
+ $(Q)[ "$(PLC_BINS)" = "" ] || $(MAKE) $(PLC_BINS)
$(Q)cd $(BUNDLE_COMPILE_PATH) ; tar -cjf $(BUNDLE_PATH)/$(BUNDLE_NAME).tar.bz2 *
$(Q)cp -R $(BUILDROOT_GIT_PATH)/download $(BUILDROOT_PATH)
- [ "$(GEN_BINS)" = "" ] || $(Q)$(MAKE) $(GEN_BINS)
+ $(Q)[ "$(GEN_BINS)" = "" ] || $(MAKE) $(GEN_BINS)
bundle-clean-standalone:
$(Q)rm -rf $(BUNDLE_PATH)