Simplify build_tools/build_detect_version
This commit is contained in:
parent
1795397bf0
commit
5a20744a6a
@ -8,7 +8,7 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
# create git version file
|
# create git version file
|
||||||
VFILE=$ROCKSDB_ROOT/util/build_version.cc.tmp
|
VFILE=$PWD/util/build_version.cc.tmp
|
||||||
trap "rm $VFILE" EXIT
|
trap "rm $VFILE" EXIT
|
||||||
|
|
||||||
# check to see if git is in the path
|
# check to see if git is in the path
|
||||||
@ -36,7 +36,7 @@ echo "const char* rocksdb_build_git_datetime = \"rocksdb_build_git_datetime:$(da
|
|||||||
echo "const char* rocksdb_build_compile_date = __DATE__;" >> ${VFILE}
|
echo "const char* rocksdb_build_compile_date = __DATE__;" >> ${VFILE}
|
||||||
echo "const char* rocksdb_build_compile_time = __TIME__;" >> ${VFILE}
|
echo "const char* rocksdb_build_compile_time = __TIME__;" >> ${VFILE}
|
||||||
|
|
||||||
OUTFILE=$ROCKSDB_ROOT/util/build_version.cc
|
OUTFILE=$PWD/util/build_version.cc
|
||||||
if [ ! -e $OUTFILE ] || ! cmp -s $VFILE $OUTFILE; then
|
if [ ! -e $OUTFILE ] || ! cmp -s $VFILE $OUTFILE; then
|
||||||
cp $VFILE $OUTFILE
|
cp $VFILE $OUTFILE
|
||||||
fi
|
fi
|
||||||
|
Loading…
x
Reference in New Issue
Block a user