mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 02:30:44 +00:00
Change -C to --work-dir to work on earlier versions of git. Add "+" to the revision number if there are uncommitted changes. Only rewrite the git_info.h if there are changes, so that make doesn't think the file has changed.
26 lines
810 B
Bash
Executable File
26 lines
810 B
Bash
Executable File
#!/bin/bash
|
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
cd $DIR
|
|
|
|
GIT_BRANCH=`git --work-tree $DIR rev-parse --abbrev-ref HEAD`
|
|
GIT_REVISION=`git --work-tree $DIR rev-parse --short HEAD`
|
|
$(git --work-tree $DIR diff-index --quiet HEAD)
|
|
if [ $? -ne 0 ]; then
|
|
GIT_REVISION="$GIT_REVISION+" # uncommitted changes
|
|
fi
|
|
|
|
[ -z "$GIT_BRANCH" ] && GIT_BRANCH="Unknown";
|
|
[ -z "$GIT_REVISION" ] && GIT_REVISION="Unknown";
|
|
|
|
echo // This is an auto generated file > $DIR/git_info.h.new
|
|
echo const QString GIT_BRANCH=\"$GIT_BRANCH\"\; >> $DIR/git_info.h.new
|
|
echo const QString GIT_REVISION=\"$GIT_REVISION\"\; >> $DIR/git_info.h.new
|
|
|
|
if diff $DIR/git_info.h $DIR/git_info.h.new &> /dev/null; then
|
|
rm $DIR/git_info.h.new
|
|
else
|
|
echo Updating $DIR/git_info.h
|
|
mv $DIR/git_info.h.new $DIR/git_info.h
|
|
fi
|