summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorXavier Chantry <chantry.xavier@gmail.com>2011-01-22 15:15:16 +0100
committerDan McGee <dan@archlinux.org>2011-01-22 10:02:57 -0600
commite277e838d798c1463ae5df98dcf637df70e048ec (patch)
tree2fe1e92eddf0b7bf50bc8e79b849971c50ff003e /scripts
parentb947db040c2c586636fc290f0fadbe89e9802450 (diff)
downloadpacman-e277e838d798c1463ae5df98dcf637df70e048ec.tar.gz
pacman-e277e838d798c1463ae5df98dcf637df70e048ec.zip
Makefile: Use git describe --dirty for GIT VERSION
dirty indicates if the repo has uncommited changes or not when building, so dont hardcode this info. Signed-off-by: Xavier Chantry <chantry.xavier@gmail.com> Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Makefile.am b/scripts/Makefile.am
index 2962b915..ae6ce366 100644
--- a/scripts/Makefile.am
+++ b/scripts/Makefile.am
@@ -25,7 +25,7 @@ EXTRA_DIST = \
MOSTLYCLEANFILES = $(bin_SCRIPTS) *.tmp
if USE_GIT_VERSION
-GIT_VERSION := $(shell sh -c 'git describe --abbrev=4 | sed s/^v//')-dirty
+GIT_VERSION := $(shell sh -c 'git describe --abbrev=4 --dirty | sed s/^v//')
REAL_PACKAGE_VERSION = $(GIT_VERSION)
else
REAL_PACKAGE_VERSION = $(PACKAGE_VERSION)