Clean up release builder scripts.
The version.h file is generated by the Makefile, we should
prefill the version_tag.h file.
(cherry picked from commit 4205752bb0)
This commit is contained in:
parent
a2efe4be0d
commit
4fb14523c8
|
|
@ -47,9 +47,11 @@ fi
|
|||
echo "Exporting $tag to $destdir/$prefix..."
|
||||
git archive --prefix="$prefix/" $tag | ( cd "$destdir" && tar xf - )
|
||||
|
||||
versionh="$destdir/$prefix/version.h"
|
||||
versionh="$destdir/$prefix/version_tag.h"
|
||||
echo "Create $versionh ..."
|
||||
echo "#define VERSION_TAG \"$tag\"" > $versionh
|
||||
echo "#ifndef VERSION_TAG" > $versionh
|
||||
echo "#define VERSION_TAG \"$tag\"" >> $versionh
|
||||
echo "#endif" >> $versionh
|
||||
|
||||
echo "Running autoconf.sh..."
|
||||
( cd $destdir/$prefix && sh autoconf.sh )
|
||||
|
|
|
|||
|
|
@ -47,9 +47,11 @@ fi
|
|||
echo "Exporting $tag to $destdir/$prefix..."
|
||||
git archive --prefix="$prefix/" $tag | ( cd "$destdir" && tar xf - )
|
||||
|
||||
versionh="$destdir/$prefix/version.h"
|
||||
versionh="$destdir/$prefix/version_tag.h"
|
||||
echo "Create $versionh ..."
|
||||
echo "#define VERSION_TAG \"$tag\"" > $versionh
|
||||
echo "#ifndef VERSION_TAG" > $versionh
|
||||
echo "#define VERSION_TAG \"$tag\"" >> $versionh
|
||||
echo "#endif" >> $versionh
|
||||
|
||||
echo "Running autoconf.sh..."
|
||||
( cd $destdir/$prefix && sh autoconf.sh )
|
||||
|
|
|
|||
Loading…
Reference in New Issue