SUNRPC: Report TCP errors to the caller
[linux/fpc-iii.git] / tools / perf / util / PERF-VERSION-GEN
blob39f17507578dae0c650dc91335e888d9a907ef4a
1 #!/bin/sh
3 if [ $# -eq 1 ] ; then
4 OUTPUT=$1
5 fi
7 GVF=${OUTPUT}PERF-VERSION-FILE
9 LF='
13 # First check if there is a .git to get the version from git describe
14 # otherwise try to get the version from the kernel Makefile
16 CID=
17 TAG=
18 if test -d ../../.git -o -f ../../.git
19 then
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"
22 elif test -f ../../PERF-VERSION-FILE
23 then
24 TAG=$(cut -d' ' -f3 ../../PERF-VERSION-FILE | sed -e 's/\"//g')
26 if test -z "$TAG"
27 then
28 TAG=$(MAKEFLAGS= make -sC ../.. kernelversion)
30 VN="$TAG$CID"
31 if test -n "$CID"
32 then
33 # format version string, strip trailing zero of sublevel:
34 VN=$(echo "$VN" | sed -e 's/-/./g;s/\([0-9]*[.][0-9]*\)[.]0/\1/')
37 VN=$(expr "$VN" : v*'\(.*\)')
39 if test -r $GVF
40 then
41 VC=$(sed -e 's/^#define PERF_VERSION "\(.*\)"/\1/' <$GVF)
42 else
43 VC=unset
45 test "$VN" = "$VC" || {
46 echo >&2 " PERF_VERSION = $VN"
47 echo "#define PERF_VERSION \"$VN\"" >$GVF