diff options
author | Thomas Schwinge <tschwinge@gnu.org> | 2006-02-04 23:13:23 +0000 |
---|---|---|
committer | Thomas Schwinge <tschwinge@gnu.org> | 2009-06-18 00:26:32 +0200 |
commit | b4b45fafeb935ceb39b2dcd91e61c5c86942078a (patch) | |
tree | 242677d9f6f28a5d050e64397c1d9539d2dfa35e | |
parent | cc6d5de417c4fdf43e976035e74d679af16ee502 (diff) |
2006-02-05 Thomas Schwinge <tschwinge@gnu.org>
* Makerules.in: Don't set no_deps to true if MAKECMDGOALS is empty.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | Makerules.in | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2006-02-05 Thomas Schwinge <tschwinge@gnu.org> + + * Makerules.in: Don't set no_deps to true if MAKECMDGOALS is empty. + 2006-02-03 Thomas Schwinge <tschwinge@gnu.org> * 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 |