]> git.sur5r.net Git - i3/i3/commitdiff
properly detect version when building out of tree
authorNathan Schulte <nmschulte@gmail.com>
Tue, 10 Jan 2017 00:47:16 +0000 (18:47 -0600)
committerNathan Schulte <nmschulte@gmail.com>
Tue, 10 Jan 2017 00:47:16 +0000 (18:47 -0600)
configure.ac

index c0f3258da449071733bf313745cf6c0da3ef9e65..9d4b2f40f5cecf1cce740055e793ad9d74c8f282 100644 (file)
@@ -31,8 +31,8 @@ AX_EXTEND_SRCDIR
 
 AS_IF([test -d ${srcdir}/.git],
       [
-        VERSION="$(git describe --tags --abbrev=0)"
-        I3_VERSION="$(git describe --tags --always) ($(git log --pretty=format:%cd --date=short -n1), branch \\\"$(git describe --tags --always --all | sed s:heads/::)\\\")"
+        VERSION="$(git -C ${srcdir} describe --tags --abbrev=0)"
+        I3_VERSION="$(git -C ${srcdir} describe --tags --always) ($(git -C ${srcdir} log --pretty=format:%cd --date=short -n1), branch \\\"$(git -C ${srcdir} describe --tags --always --all | sed s:heads/::)\\\")"
         # Mirrors what libi3/is_debug_build.c does:
         is_release=$(test $(echo "${I3_VERSION}" | cut -d '(' -f 1 | wc -m) -lt 10 && echo yes || echo no)
       ],