Show source version in the makefile logs

This commit is contained in:
Philippe Teuwen 2021-09-05 01:18:42 +02:00
commit 0ed190936d
3 changed files with 12 additions and 0 deletions

View file

@ -8,6 +8,12 @@
export LC_ALL="C"
export LANG="C"
SHORT=false
if [ "$1" = "--short" ]; then
SHORT=true
shift
fi
# if you are making your own fork, change this line to reflect your fork-name
fullgitinfo="RRG/Iceman"
# GIT status 0 = dirty, 1 = clean , 2 = undecided
@ -40,6 +46,10 @@ else
# POSIX way...
ctime=${dl_time%.*}
fi
if $SHORT; then
echo "$fullgitinfo"
exit 0
fi
# Crop so it fits within 50 characters C string, so max 49 chars
# POSIX way