mirror of https://github.com/thesofproject/sof.git
build: fix version script to use correct version in tarball build
make sure the tarball build and worktree build uses the correct version. Signed-off-by: Liam Girdwood <liam.r.girdwood@linux.intel.com>
This commit is contained in:
parent
6bb3783952
commit
83fec15597
|
@ -10,8 +10,8 @@ else
|
|||
DIR=$1
|
||||
fi
|
||||
|
||||
# create git version if we are a git repo
|
||||
if [ ! -d $DIR/.git ]; then
|
||||
# create git version if we are a git repo or git worktree
|
||||
if [ -e $DIR/.git -o -d $DIR/.git ]; then
|
||||
# version for make dist
|
||||
git describe --abbrev=4 > $DIR/.version
|
||||
git describe --abbrev=4 > $DIR/.tarball-version
|
||||
|
@ -19,7 +19,7 @@ if [ ! -d $DIR/.git ]; then
|
|||
# git commit for IPC
|
||||
echo "#define REEF_TAG \"`git log --pretty=format:\"%h\" -1 | cut -c1-5`\"" > $DIR/src/include/version.h
|
||||
else
|
||||
echo "#define REEF_TAG 0" > $DIR/src/include/version.h
|
||||
echo "#define REEF_TAG \"0\"" > $DIR/src/include/version.h
|
||||
fi
|
||||
|
||||
# build counter
|
||||
|
|
Loading…
Reference in New Issue