Module: wine Branch: master Commit: 06566a534737f7741c05677ccdc50b5f951aa16f URL: http://source.winehq.org/git/wine.git/?a=commit;h=06566a534737f7741c05677ccd... Author: Saulius Krasuckas <saulius.krasuckas(a)ieee.org> Date: Thu Nov 9 20:05:19 2006 +0200 loader: Use plain binary name of git-describe to avoid junk in version output. --- loader/Makefile.in | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/loader/Makefile.in b/loader/Makefile.in index 94c2428..47a8629 100644 --- a/loader/Makefile.in +++ b/loader/Makefile.in @@ -61,7 +61,7 @@ clean:: $(RM) $(WINE_BINARIES) $(MODULE) version.c version-stamp version-stamp: dummy - (GIT_DIR=$(TOPSRCDIR)/.git git describe 2>/dev/null || echo "wine-(a)PACKAGE_VERSION@") | sed -e 's/\(.*\)/const char wine_version[] = "\1";/' >$@ || ($(RM) $@ && exit 1) + (GIT_DIR=$(TOPSRCDIR)/.git git-describe 2>/dev/null || echo "wine-(a)PACKAGE_VERSION@") | sed -e 's/\(.*\)/const char wine_version[] = "\1";/' >$@ || ($(RM) $@ && exit 1) version.c: version-stamp @cmp -s version-stamp $@ || cp version-stamp $@