[PATCH 1/2] perf: Version String fix, using kernel version

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Thavidu Ranatunga
Date: Monday, July 5, 2010 - 1:00 am

Changes the Perf --version string such that it shows the kernel version as
suggested by Ingo as follows:

That way the perf that comes with v2.6.34 will be:
perf version v2.6.34

while interim versions will have the version of the interim kernel - for
example:
 perf version v2.6.35-rc4-70-g39ef13a

This functionality was already in the perf version generator file except that it
was looking for a .git in the perf directory instead of the kernel directory.

Signed-off-by: Thavidu Ranatunga <tharan@au1.ibm.com>
Signed-off-by: Ian Munsie <imunsie@au1.ibm.com>
---
 tools/perf/util/PERF-VERSION-GEN |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/tools/perf/util/PERF-VERSION-GEN b/tools/perf/util/PERF-VERSION-GEN
index 49ece79..1b32e8c 100755
--- a/tools/perf/util/PERF-VERSION-GEN
+++ b/tools/perf/util/PERF-VERSION-GEN
@@ -15,7 +15,7 @@ LF='
 if test -f version
 then
 	VN=$(cat version) || VN="$DEF_VER"
-elif test -d .git -o -f .git &&
+elif test -d ../../.git -o -f ../../.git &&
 	VN=$(git describe --abbrev=4 HEAD 2>/dev/null) &&
 	case "$VN" in
 	*$LF*) (exit 1) ;;
-- 
1.6.3.3

--
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[PATCH 1/2] perf: Version String fix, using kernel version, Thavidu Ranatunga, (Mon Jul 5, 1:00 am)
[tip:perf/urgent] perf: Version String fix, using kernel v ..., tip-bot for Thavidu ..., (Mon Jul 5, 1:45 am)