Use consistent wording in version check

Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
Hans Ulrich Niedermann 2008-01-21 13:48:26 +01:00 committed by Julien Danjou
parent 0ccfeb14b5
commit 7ffd48ccd6
1 changed files with 4 additions and 4 deletions

View File

@ -152,10 +152,10 @@ EXTRA_DIST += build-utils/package-version
git-version-check: git-version-check:
git_ver=`$(top_srcdir)/build-utils/package-version $(top_srcdir) version-stamp`; \ git_ver=`$(top_srcdir)/build-utils/package-version $(top_srcdir) version-stamp`; \
if test "x$${git_ver}" = "x$(PACKAGE_VERSION)"; then :; else \ if test "x$${git_ver}" = "x$(PACKAGE_VERSION)"; then :; else \
echo "ERROR: The PACKAGE_VERSION and the 'git describe' version do not match:"; \ echo "ERROR: PACKAGE_VERSION and 'git describe' version do not match:"; \
echo " current git version: $${git_ver}"; \ echo " current 'git describe' version: $${git_ver}"; \
echo " current package version: $(PACKAGE_VERSION)"; \ echo " current PACKAGE_VERSION: $(PACKAGE_VERSION)"; \
echo "You can update the PACKAGE_VERSION by running $(top_srcdir)/autogen.sh."; \ echo "You can update PACKAGE_VERSION by running $(top_srcdir)/autogen.sh."; \
exit 1; \ exit 1; \
fi fi