summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatúš Kukan <matus.kukan@gmail.com>2013-01-04 21:09:17 +0100
committerMatúš Kukan <matus.kukan@gmail.com>2013-01-04 21:17:28 +0100
commit149277ba2f630261ab9880523bf742318a7a7f12 (patch)
treebc2c63c81db5fd3ccdc4fe41879c2da1b20f719f
parent4a4627eba410df933d004170d9f5638526acaed2 (diff)
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
-rw-r--r--Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index b5a04281a3ef..fb00c389b9b2 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