| GVF=${OUTPUT}PERF-VERSION-FILE |
| # First check if there is a .git to get the version from git describe |
| # otherwise try to get the version from the kernel Makefile |
| if test -d ../../.git -o -f ../../.git |
| TAG=$(git describe --abbrev=0 --match "v[0-9].[0-9]*" 2>/dev/null ) |
| CID=$(git log -1 --abbrev=4 --pretty=format:"%h" 2>/dev/null) && CID="-g$CID" |
| elif test -f ../../PERF-VERSION-FILE |
| TAG=$(cut -d' ' -f3 ../../PERF-VERSION-FILE | sed -e 's/\"//g') |
| TAG=$(MAKEFLAGS= make -sC ../.. kernelversion) |
| # format version string, strip trailing zero of sublevel: |
| VN=$(echo "$VN" | sed -e 's/-/./g;s/\([0-9]*[.][0-9]*\)[.]0/\1/') |
| VN=$(expr "$VN" : v*'\(.*\)') |
| VC=$(sed -e 's/^#define PERF_VERSION "\(.*\)"/\1/' <$GVF) |
| echo >&2 " PERF_VERSION = $VN" |
| echo "#define PERF_VERSION \"$VN\"" >$GVF |