[Libreoffice-commits] .: Makefile.in
Libreoffice Gerrit user
logerrit at kemper.freedesktop.org
Fri Jan 4 12:18:30 PST 2013
Makefile.in | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 149277ba2f630261ab9880523bf742318a7a7f12
Author: Matúš Kukan <matus.kukan at gmail.com>
Date: Fri Jan 4 21:09:17 2013 +0100
fix the if filter-expression
Let's use the orginal patch from https://gerrit.libreoffice.org/#/c/1479/
There is difference, visible e.g. by 'make help testtools'
Change-Id: Iaf929ed1d315f038eb29fca1b4ba37e2143c6294
diff --git a/Makefile.in b/Makefile.in
index b5a0428..fb00c38 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -21,7 +21,7 @@ BUILDDIR := @BUILDDIR@
# If you want to make something more than help clean distclean,
# and make has not yet restarted itself..
# ..run autogen.sh if needed and force make to restart itself.
-ifeq (,$(MAKE_RESTARTS)$(if $(filter help clean distclean,$(MAKECMDGOALS)),T))
+ifeq (,$(MAKE_RESTARTS)$(if $(filter-out help clean distclean,$(MAKECMDGOALS)),,T))
.PHONY : force-restart
Makefile: $(BUILDDIR)/config_host.mk force-restart
More information about the Libreoffice-commits
mailing list