summaryrefslogtreecommitdiff
path: root/Makerules.in
diff options
context:
space:
mode:
authorThomas Schwinge <tschwinge@gnu.org>2006-02-04 23:13:23 +0000
committerThomas Schwinge <tschwinge@gnu.org>2009-06-18 00:26:32 +0200
commitb4b45fafeb935ceb39b2dcd91e61c5c86942078a (patch)
tree242677d9f6f28a5d050e64397c1d9539d2dfa35e /Makerules.in
parentcc6d5de417c4fdf43e976035e74d679af16ee502 (diff)
2006-02-05 Thomas Schwinge <tschwinge@gnu.org>
* Makerules.in: Don't set no_deps to true if MAKECMDGOALS is empty.
Diffstat (limited to 'Makerules.in')
-rw-r--r--Makerules.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makerules.in b/Makerules.in
index b0dfc35..376b91e 100644
--- a/Makerules.in
+++ b/Makerules.in
@@ -104,7 +104,7 @@ ASFLAGS += -DASSEMBLER
#
# Don't build and include dependency files if they're not needed.
-ifeq ($(strip $(filter-out %clean, $(MAKECMDGOALS))),)
+ifneq ($(strip $(filter %clean, $(MAKECMDGOALS))),)
no_deps = t
endif