aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2006-06-11 16:41:10 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2006-06-11 16:41:10 +0000
commit081b1ac6b4cce2896e5a874c96b9b02e0edbcf8e (patch)
tree5c4d016b7031985a153b0fe64f3eb46afecb4f73
parente5de38497a2eea4683923fa6bca716583cfcdd83 (diff)
downloadbusybox-w32-081b1ac6b4cce2896e5a874c96b9b02e0edbcf8e.tar.gz
busybox-w32-081b1ac6b4cce2896e5a874c96b9b02e0edbcf8e.tar.bz2
busybox-w32-081b1ac6b4cce2896e5a874c96b9b02e0edbcf8e.zip
- invert logic for nocheck_targets to exclude the empty default target.
-rw-r--r--Rules.mak6
1 files changed, 3 insertions, 3 deletions
diff --git a/Rules.mak b/Rules.mak
index 000790e64..e3e3dd667 100644
--- a/Rules.mak
+++ b/Rules.mak
@@ -115,7 +115,7 @@ check_cc=$(shell \
115 rm -f conftest.c conftest.o; \ 115 rm -f conftest.c conftest.o; \
116 fi) 116 fi)
117 117
118ifeq ($(filter-out $(nocheck_targets),$(MAKECMDGOALS)),) 118ifneq ($(filter $(nocheck_targets),$(MAKECMDGOALS)),)
119check_cc:= 119check_cc:=
120endif 120endif
121 121
@@ -130,7 +130,7 @@ check_ld=$(shell \
130 echo "-Wl,$(2)" ; \ 130 echo "-Wl,$(2)" ; \
131 fi) 131 fi)
132 132
133ifeq ($(filter-out $(nocheck_targets),$(MAKECMDGOALS)),) 133ifneq ($(filter $(nocheck_targets),$(MAKECMDGOALS)),)
134check_ld:= 134check_ld:=
135endif 135endif
136 136
@@ -148,7 +148,7 @@ check_strip=$(shell \
148 rm -f conftest.c conftest.o > /dev/null 2>&1 ; \ 148 rm -f conftest.c conftest.o > /dev/null 2>&1 ; \
149 fi) 149 fi)
150 150
151ifeq ($(filter-out $(nocheck_targets),$(MAKECMDGOALS)),) 151ifneq ($(filter $(nocheck_targets),$(MAKECMDGOALS)),)
152check_strip:= 152check_strip:=
153endif 153endif
154 154