diff options
Diffstat (limited to 'tools/perf/util/PERF-VERSION-GEN')
-rwxr-xr-x | tools/perf/util/PERF-VERSION-GEN | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/perf/util/PERF-VERSION-GEN b/tools/perf/util/PERF-VERSION-GEN index 15a77b7c0e36..39f17507578d 100755 --- a/tools/perf/util/PERF-VERSION-GEN +++ b/tools/perf/util/PERF-VERSION-GEN | |||
@@ -19,6 +19,9 @@ if test -d ../../.git -o -f ../../.git | |||
19 | then | 19 | then |
20 | TAG=$(git describe --abbrev=0 --match "v[0-9].[0-9]*" 2>/dev/null ) | 20 | TAG=$(git describe --abbrev=0 --match "v[0-9].[0-9]*" 2>/dev/null ) |
21 | CID=$(git log -1 --abbrev=4 --pretty=format:"%h" 2>/dev/null) && CID="-g$CID" | 21 | CID=$(git log -1 --abbrev=4 --pretty=format:"%h" 2>/dev/null) && CID="-g$CID" |
22 | elif test -f ../../PERF-VERSION-FILE | ||
23 | then | ||
24 | TAG=$(cut -d' ' -f3 ../../PERF-VERSION-FILE | sed -e 's/\"//g') | ||
22 | fi | 25 | fi |
23 | if test -z "$TAG" | 26 | if test -z "$TAG" |
24 | then | 27 | then |
@@ -40,7 +43,7 @@ else | |||
40 | VC=unset | 43 | VC=unset |
41 | fi | 44 | fi |
42 | test "$VN" = "$VC" || { | 45 | test "$VN" = "$VC" || { |
43 | echo >&2 "PERF_VERSION = $VN" | 46 | echo >&2 " PERF_VERSION = $VN" |
44 | echo "#define PERF_VERSION \"$VN\"" >$GVF | 47 | echo "#define PERF_VERSION \"$VN\"" >$GVF |
45 | } | 48 | } |
46 | 49 | ||