diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-06-11 16:41:10 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-06-11 16:41:10 +0000 |
commit | 081b1ac6b4cce2896e5a874c96b9b02e0edbcf8e (patch) | |
tree | 5c4d016b7031985a153b0fe64f3eb46afecb4f73 | |
parent | e5de38497a2eea4683923fa6bca716583cfcdd83 (diff) | |
download | busybox-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.mak | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 | ||
118 | ifeq ($(filter-out $(nocheck_targets),$(MAKECMDGOALS)),) | 118 | ifneq ($(filter $(nocheck_targets),$(MAKECMDGOALS)),) |
119 | check_cc:= | 119 | check_cc:= |
120 | endif | 120 | endif |
121 | 121 | ||
@@ -130,7 +130,7 @@ check_ld=$(shell \ | |||
130 | echo "-Wl,$(2)" ; \ | 130 | echo "-Wl,$(2)" ; \ |
131 | fi) | 131 | fi) |
132 | 132 | ||
133 | ifeq ($(filter-out $(nocheck_targets),$(MAKECMDGOALS)),) | 133 | ifneq ($(filter $(nocheck_targets),$(MAKECMDGOALS)),) |
134 | check_ld:= | 134 | check_ld:= |
135 | endif | 135 | endif |
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 | ||
151 | ifeq ($(filter-out $(nocheck_targets),$(MAKECMDGOALS)),) | 151 | ifneq ($(filter $(nocheck_targets),$(MAKECMDGOALS)),) |
152 | check_strip:= | 152 | check_strip:= |
153 | endif | 153 | endif |
154 | 154 | ||