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-081b1ac6b4cce2896e5a874c96b9b02e0edbcf8e.tar.gz |
- 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 \ rm -f conftest.c conftest.o; \ fi) -ifeq ($(filter-out $(nocheck_targets),$(MAKECMDGOALS)),) +ifneq ($(filter $(nocheck_targets),$(MAKECMDGOALS)),) check_cc:= endif @@ -130,7 +130,7 @@ check_ld=$(shell \ echo "-Wl,$(2)" ; \ fi) -ifeq ($(filter-out $(nocheck_targets),$(MAKECMDGOALS)),) +ifneq ($(filter $(nocheck_targets),$(MAKECMDGOALS)),) check_ld:= endif @@ -148,7 +148,7 @@ check_strip=$(shell \ rm -f conftest.c conftest.o > /dev/null 2>&1 ; \ fi) -ifeq ($(filter-out $(nocheck_targets),$(MAKECMDGOALS)),) +ifneq ($(filter $(nocheck_targets),$(MAKECMDGOALS)),) check_strip:= endif |