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 9c5fb4d..ad73300 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*'\(.*\)')