X-Git-Url: https://git.karo-electronics.de/?a=blobdiff_plain;f=tools%2Fperf%2Ffeature-tests.mak;h=b253db634f04b7e8ddfddd1cc33bb3ce8343a49a;hb=7de5d895b2020260190db0021de646f3f22f755e;hp=ef3d0d6a9e230ee0d02084de5fadf95574495ebf;hpb=04fba67163a9e6132614b72b33bb2743bd33ffb3;p=karo-tx-linux.git diff --git a/tools/perf/feature-tests.mak b/tools/perf/feature-tests.mak index ef3d0d6a9e23..b253db634f04 100644 --- a/tools/perf/feature-tests.mak +++ b/tools/perf/feature-tests.mak @@ -124,7 +124,7 @@ endef # try-cc # Usage: option = $(call try-cc, source-to-build, cc-options) try-cc = $(shell sh -c \ - 'TMP="$(TMPOUT).$$$$"; \ + 'TMP="$(OUTPUT)$(TMPOUT).$$$$"; \ echo "$(1)" | \ $(CC) -x c - $(2) -o "$$TMP" > /dev/null 2>&1 && echo y; \ rm -f "$$TMP"')