X-Git-Url: https://bbs.cooldavid.org/git/?a=blobdiff_plain;f=tools%2Fperf%2Ffeature-tests.mak;h=7a7b6085905382c791834b0c0f35ed5f39658e26;hb=ecafda60e88031bcc4271c446f984ee883d69ea8;hp=ddb68e601f0ec2f67558afef92d3506f7661cd82;hpb=033a273f9836b592dd568abd0f655be469d66704;p=net-next-2.6.git diff --git a/tools/perf/feature-tests.mak b/tools/perf/feature-tests.mak index ddb68e601f0..7a7b6085905 100644 --- a/tools/perf/feature-tests.mak +++ b/tools/perf/feature-tests.mak @@ -113,7 +113,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"')