From 7ffd48ccd691f312e6b9fbd3646143f35f428a67 Mon Sep 17 00:00:00 2001 From: Hans Ulrich Niedermann Date: Mon, 21 Jan 2008 13:48:26 +0100 Subject: [PATCH] Use consistent wording in version check Signed-off-by: Julien Danjou --- Makefile.am | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile.am b/Makefile.am index ec0f6cb0..c8138d8e 100644 --- a/Makefile.am +++ b/Makefile.am @@ -152,10 +152,10 @@ EXTRA_DIST += build-utils/package-version git-version-check: git_ver=`$(top_srcdir)/build-utils/package-version $(top_srcdir) version-stamp`; \ if test "x$${git_ver}" = "x$(PACKAGE_VERSION)"; then :; else \ - echo "ERROR: The PACKAGE_VERSION and the 'git describe' version do not match:"; \ - echo " current git version: $${git_ver}"; \ - echo " current package version: $(PACKAGE_VERSION)"; \ - echo "You can update the PACKAGE_VERSION by running $(top_srcdir)/autogen.sh."; \ + echo "ERROR: PACKAGE_VERSION and 'git describe' version do not match:"; \ + echo " current 'git describe' version: $${git_ver}"; \ + echo " current PACKAGE_VERSION: $(PACKAGE_VERSION)"; \ + echo "You can update PACKAGE_VERSION by running $(top_srcdir)/autogen.sh."; \ exit 1; \ fi