From 9cd06ac33f808b15886e0151e74560cbfa34a660 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Wed, 8 Apr 2020 08:41:55 -0700 Subject: [PATCH] Add perforce support to showrev.sh In order to generate meaningful output from SDL_GetRevision() --- build-scripts/showrev.sh | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/build-scripts/showrev.sh b/build-scripts/showrev.sh index 517992d9cd3c2..788d7ef2f0f75 100755 --- a/build-scripts/showrev.sh +++ b/build-scripts/showrev.sh @@ -2,4 +2,24 @@ # # Print the current source revision, if available -hg parents --template 'hg-{rev}:{node|short}' || (echo "hg-0:baadf00d"; exit 1) +SDL_ROOT=$(dirname $0)/.. +cd $SDL_ROOT + +if [ -x "$(command -v hg)" ]; then + rev="$(hg parents --template 'hg-{rev}:{node|short}' 2>/dev/null)" + if [ "$?" == 0 ]; then + echo $rev + exit 0 + fi +fi + +if [ -x "$(command -v p4)" ]; then + rev="$(p4 changes -m1 ./...\#have 2>/dev/null| awk '{print $2}')" + if [ "$?" == 0 ]; then + echo $rev + exit 0 + fi +fi + +echo "hg-0:baadf00d" +exit 1