Provide build time when building from tarball:
When building from tarball (i.g. not from git source tree or when git is not available) `genbuild.sh` write undefined $TIME to "build/build.h". Even worse, when TIME is set in the environment then its value is written instead of a date. For me this change fixed FTBFS which I got because I had TIME enviroment variable set with format for time(1) utility.
This commit is contained in:
parent
d980f9b7d6
commit
ef1e984ead
@ -13,6 +13,8 @@ else
|
|||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
TIME=$(date '+%F %T %z')
|
||||||
|
|
||||||
if [ -e "$(which git)" -a -d ".git" ]; then
|
if [ -e "$(which git)" -a -d ".git" ]; then
|
||||||
# clean 'dirty' status of touched files that haven't been modified
|
# clean 'dirty' status of touched files that haven't been modified
|
||||||
git diff >/dev/null 2>/dev/null
|
git diff >/dev/null 2>/dev/null
|
||||||
|
Loading…
Reference in New Issue
Block a user