conditionalize use of git on executability of /usr/bin/git binary
authorBdale Garbee <bdale@gag.com>
Thu, 25 Feb 2010 00:25:28 +0000 (17:25 -0700)
committerBdale Garbee <bdale@gag.com>
Thu, 25 Feb 2010 00:25:28 +0000 (17:25 -0700)
debian/rules

index f4e9f840fccd39f337e46cea40bc292e992b2d6e..f6efe9900a96b5487086e75c0222585086425367 100755 (executable)
@@ -3,7 +3,7 @@
 
 export DH_VERBOSE=1
 PKG_VERSION := $(shell dpkg-parsechangelog | sed -ne 's/^Version: \(.*\)/\1/p')
-DEB_VERSION := $(shell -git describe | tr - +)
+DEB_VERSION := $(shell if [ -x /usr/bin/git ]; then git describe; else echo 0; fi | tr - +)
 
 # this target invoked by git-buildpackage using a clean hook, see .gbp.conf
 prebuild: