perf: clear out make flags when calling kernel make kernelver
authorAndy Whitcroft <apw@canonical.com>
Wed, 15 Jun 2011 13:35:00 +0000 (14:35 +0100)
committerMichal Marek <mmarek@suse.cz>
Wed, 15 Jun 2011 20:12:55 +0000 (22:12 +0200)
When generating the perf version from the kernel version using 'make
kernelver' it is necessary to clear out any MAKEFLAGS otherwise they may
trigger additional output which pollute the contents.

Signed-off-by: Andy Whitcroft <apw@canonical.com>
Signed-off-by: Michal Marek <mmarek@suse.cz>
tools/perf/util/PERF-VERSION-GEN

index 9c5fb4d93824e406d534631a39ca96ea48e415a0..ad73300f7bac6d1b11e4db0f1e121e0e26b0fb0c 100755 (executable)
@@ -23,7 +23,7 @@ if test -d ../../.git -o -f ../../.git &&
 then
        VN=$(echo "$VN" | sed -e 's/-/./g');
 else
-       VN=$(make -sC ../.. kernelversion)
+       VN=$(MAKEFLAGS= make -sC ../.. kernelversion)
 fi
 
 VN=$(expr "$VN" : v*'\(.*\)')
This page took 0.087952 seconds and 5 git commands to generate.