aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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