[Libreoffice-commits] .: solenv/gbuild

Norbert Thiebaud nthiebaud at kemper.freedesktop.org
Wed Nov 16 14:14:30 PST 2011


 solenv/gbuild/source_and_rerun.mk |    7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

New commits:
commit 8a7cfed28d15a7e64e897fa309189cce058fc48a
Author: Norbert Thiebaud <nthiebaud at gmail.com>
Date:   Wed Nov 16 16:13:54 2011 -0600

    support for various make goal in source_and_rerun

diff --git a/solenv/gbuild/source_and_rerun.mk b/solenv/gbuild/source_and_rerun.mk
index 937751f..0de1a9d 100644
--- a/solenv/gbuild/source_and_rerun.mk
+++ b/solenv/gbuild/source_and_rerun.mk
@@ -1,6 +1,11 @@
 
-all:
+dummy:
 	@if test -f ./config.mk; then . ./config.mk; else if test -f ../config.mk ; then . ../config.mk; fi; fi && \
 	if test -f ./Env.Host.sh; then . ./Env.Host.sh; else if test -f ../Env.Host.sh; then . ../Env.Host.sh; fi ; fi && \
 	if test -z "$${SOLARENV}"; then echo "No environment set!" 2>&1; exit 1; fi && \
 	$(MAKE) $(MAKECMDGOALS)
+
+ifneq ($(strip $(MAKECMDGOALS)),)
+$(eval $(MAKECMDGOALS) : dummy)
+endif
+


More information about the Libreoffice-commits mailing list