Chances since v3: diff --git a/GIT-VERSION-GEN b/GIT-VERSION-GEN index 19902e9..c04c4de 100755 --- a/GIT-VERSION-GEN +++ b/GIT-VERSION-GEN @@ -26,8 +26,10 @@ describe () { if test -f version then VN=$(cat version) || VN="$DEF_VER" -elif test ! -d ${GIT_DIR:-.git} -a ! -f .git || ! describe +elif test -d ${GIT_DIR:-.git} -o -f .git && describe then + VN=$(echo "$VN" | sed -e 's/-/~/g') +else VN="$DEF_VER" fi diff --git a/Makefile b/Makefile index 7a8bee7..3588ca1 100644 --- a/Makefile +++ b/Makefile @@ -2426,7 +2426,7 @@ quick-install-html: ### Maintainer's dist rules git.spec: git.spec.in GIT-VERSION-FILE - sed -e 's/@@VERSION@@/$(subst -,~,$(GIT_VERSION))/g' < $< > $@+ + sed -e 's/@@VERSION@@/$(GIT_VERSION)/g' < $< > $@+ mv $@+ $@ GIT_TARNAME = git-$(GIT_VERSION) Felipe Contreras (2): version-gen: cleanup version-gen: fix versions GIT-VERSION-GEN | 36 ++++++++++++++++++++---------------- 1 file changed, 20 insertions(+), 16 deletions(-) -- 1.8.4-fc -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html