Merge branch '1.0-stable'

This commit is contained in:
Liam Girdwood 2018-01-11 14:59:52 +00:00
commit ac3f2e9399
1 changed files with 3 additions and 3 deletions

View File

@ -10,8 +10,8 @@ else
DIR=$1 DIR=$1
fi fi
# create git version if we are a git repo # create git version if we are a git repo or git worktree
if [ ! -d $DIR/.git ]; then if [ -e $DIR/.git -o -d $DIR/.git ]; then
# version for make dist # version for make dist
git describe --abbrev=4 > $DIR/.version git describe --abbrev=4 > $DIR/.version
git describe --abbrev=4 > $DIR/.tarball-version git describe --abbrev=4 > $DIR/.tarball-version
@ -19,7 +19,7 @@ if [ ! -d $DIR/.git ]; then
# git commit for IPC # git commit for IPC
echo "#define REEF_TAG \"`git log --pretty=format:\"%h\" -1 | cut -c1-5`\"" > $DIR/src/include/version.h echo "#define REEF_TAG \"`git log --pretty=format:\"%h\" -1 | cut -c1-5`\"" > $DIR/src/include/version.h
else else
echo "#define REEF_TAG 0" > $DIR/src/include/version.h echo "#define REEF_TAG \"0\"" > $DIR/src/include/version.h
fi fi
# build counter # build counter