From b4b45fafeb935ceb39b2dcd91e61c5c86942078a Mon Sep 17 00:00:00 2001 From: Thomas Schwinge Date: Sat, 4 Feb 2006 23:13:23 +0000 Subject: 2006-02-05 Thomas Schwinge * Makerules.in: Don't set no_deps to true if MAKECMDGOALS is empty. --- ChangeLog | 4 ++++ Makerules.in | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 22b2108..951a8ee 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2006-02-05 Thomas Schwinge + + * Makerules.in: Don't set no_deps to true if MAKECMDGOALS is empty. + 2006-02-03 Thomas Schwinge * Makerules.in: Set no_deps to true if we don't need the dependency 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 -- cgit v1.2.3