aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/util/llvm-utils.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/perf/util/llvm-utils.c')
-rw-r--r--tools/perf/util/llvm-utils.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/perf/util/llvm-utils.c b/tools/perf/util/llvm-utils.c
index 976e658e38dc..5e94857dfca2 100644
--- a/tools/perf/util/llvm-utils.c
+++ b/tools/perf/util/llvm-utils.c
@@ -266,16 +266,16 @@ static const char *kinc_fetch_script =
266"#!/usr/bin/env sh\n" 266"#!/usr/bin/env sh\n"
267"if ! test -d \"$KBUILD_DIR\"\n" 267"if ! test -d \"$KBUILD_DIR\"\n"
268"then\n" 268"then\n"
269" exit -1\n" 269" exit 1\n"
270"fi\n" 270"fi\n"
271"if ! test -f \"$KBUILD_DIR/include/generated/autoconf.h\"\n" 271"if ! test -f \"$KBUILD_DIR/include/generated/autoconf.h\"\n"
272"then\n" 272"then\n"
273" exit -1\n" 273" exit 1\n"
274"fi\n" 274"fi\n"
275"TMPDIR=`mktemp -d`\n" 275"TMPDIR=`mktemp -d`\n"
276"if test -z \"$TMPDIR\"\n" 276"if test -z \"$TMPDIR\"\n"
277"then\n" 277"then\n"
278" exit -1\n" 278" exit 1\n"
279"fi\n" 279"fi\n"
280"cat << EOF > $TMPDIR/Makefile\n" 280"cat << EOF > $TMPDIR/Makefile\n"
281"obj-y := dummy.o\n" 281"obj-y := dummy.o\n"