projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
71d6de6
)
perf build: Remove unnecessary line in Makefile.feature
author
Josh Poimboeuf
<
[email protected]
>
Mon, 14 Dec 2015 04:18:01 +0000
(22:18 -0600)
committer
Arnaldo Carvalho de Melo
<
[email protected]
>
Mon, 14 Dec 2015 15:16:15 +0000
(12:16 -0300)
This line always silently fails because it doesn't add the 'test-'
prefix to the .bin file.
And it seems to be unnecessary anyway: the line immediately after it
does all the individual feature checks.
Signed-off-by: Josh Poimboeuf <
[email protected]
>
Acked-by: Jiri Olsa <
[email protected]
>
Cc: Namhyung Kim <
[email protected]
>
Cc: Peter Zijlstra <
[email protected]
>
Link:
http://lkml.kernel.org/r/554a05c18af564ba015c9e68f25730126e0f4acb.1449965119.git.jpoimboe@redhat.com
Signed-off-by: Arnaldo Carvalho de Melo <
[email protected]
>
tools/build/Makefile.feature
patch
|
blob
|
history
diff --git
a/tools/build/Makefile.feature
b/tools/build/Makefile.feature
index 37ff4c9f92f1b5d8c17f8df034f0dad567d146fa..b8c31ece2d967a99c9c0bf69deaa95f3ab22921f 100644
(file)
--- a/
tools/build/Makefile.feature
+++ b/
tools/build/Makefile.feature
@@
-101,7
+101,6
@@
ifeq ($(feature-all), 1)
#
$(foreach feat,$(FEATURE_TESTS),$(call feature_set,$(feat)))
else
- $(shell $(MAKE) OUTPUT=$(OUTPUT_FEATURES) CFLAGS="$(EXTRA_CFLAGS)" LDFLAGS=$(LDFLAGS) -i -j -C $(feature_dir) $(addsuffix .bin,$(FEATURE_TESTS)) >/dev/null 2>&1)
$(foreach feat,$(FEATURE_TESTS),$(call feature_check,$(feat)))
endif