summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGreg Roach <fisharebest@gmail.com>2014-01-29 10:03:26 +0000
committerGreg Roach <fisharebest@gmail.com>2014-01-29 10:03:26 +0000
commitbee85d30bb04ccdb0258145d097db4ba51886f22 (patch)
treee4f482456fa274682dd53d94c617a76a8e1aac78
parent30ffd54359a13d378f89e3c2b1804a5f46669870 (diff)
downloadwebtrees-bee85d30bb04ccdb0258145d097db4ba51886f22.tar.gz
webtrees-bee85d30bb04ccdb0258145d097db4ba51886f22.tar.bz2
webtrees-bee85d30bb04ccdb0258145d097db4ba51886f22.zip
Build script not finding version
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index b8131a92f1..5ff01ef9a7 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
BUILD_DIR=build
BUILD_NUMBER=$(shell git log --oneline | wc -l)
BUILD_VERSION=$(if $(WT_RELEASE),$(BUILD_NUMBER),$(WT_VERSION)$(WT_RELEASE))
-GIT_BRANCH=$(git symbolic-ref -q HEAD || git describe --tags --exact-match)
+GIT_BRANCH=$(shell git symbolic-ref -q HEAD || git describe --tags --exact-match)
LANGUAGE_DIR=language
LANGUAGE_SRC=$(shell git grep -I --name-only --fixed-strings -e WT_I18N:: -- "*.php" "*.xml")
MO_FILES=$(patsubst %.po,%.mo,$(PO_FILES))