perf tools: Version incorrect with some versions of grep
authorJosh Hunt <[email protected]>
Wed, 16 Mar 2011 02:16:40 +0000 (19:16 -0700)
committerArnaldo Carvalho de Melo <[email protected]>
Wed, 16 Mar 2011 11:59:50 +0000 (08:59 -0300)
Some versions of grep don't treat '\s' properly. When building perf on such
systems and using a kernel tarball the perf version is unable to be determined
from the main kernel Makefile and the user is left with a version of '..'.
Replacing the use of '\s' with '[[:space:]]', which should work in all grep
versions, gives a usable version number.

Reported-by: Tapan Dhimant <[email protected]>
Cc: Ingo Molnar <[email protected]>
Cc: Paul Mackerras <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Cc: Tapan Dhimant <[email protected]>
Cc: [email protected]
Cc: [email protected]
LKML-Reference: <1300241800[email protected]>
Signed-off-by: Josh Hunt <[email protected]>
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
tools/perf/util/PERF-VERSION-GEN

index 97d76562a1a093c8a4bfc6f4bca652fa410779e4..26d4d3fd6deb2e1285ca44c9a710e7cadffd374d 100755 (executable)
@@ -23,10 +23,10 @@ if test -d ../../.git -o -f ../../.git &&
 then
        VN=$(echo "$VN" | sed -e 's/-/./g');
 else
-       eval `grep '^VERSION\s*=' ../../Makefile|tr -d ' '`
-       eval `grep '^PATCHLEVEL\s*=' ../../Makefile|tr -d ' '`
-       eval `grep '^SUBLEVEL\s*=' ../../Makefile|tr -d ' '`
-       eval `grep '^EXTRAVERSION\s*=' ../../Makefile|tr -d ' '`
+       eval $(grep '^VERSION[[:space:]]*=' ../../Makefile|tr -d ' ')
+       eval $(grep '^PATCHLEVEL[[:space:]]*=' ../../Makefile|tr -d ' ')
+       eval $(grep '^SUBLEVEL[[:space:]]*=' ../../Makefile|tr -d ' ')
+       eval $(grep '^EXTRAVERSION[[:space:]]*=' ../../Makefile|tr -d ' ')
 
        VN="${VERSION}.${PATCHLEVEL}.${SUBLEVEL}${EXTRAVERSION}"
 fi