summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNeil Roberts <neil@linux.intel.com>2011-07-01 15:34:49 +0100
committerNeil Roberts <neil@linux.intel.com>2011-07-01 16:47:42 +0100
commitcfe5a0a28589d11287544533e2784dc49f0abe5f (patch)
tree7c49253f71b8e79cee21fc8ad598229e47f8059e
parentb11f6c9e11b4f15c846d56259ef8d879d5d3d2f7 (diff)
downloadcogl-cfe5a0a28589d11287544533e2784dc49f0abe5f.tar.gz
releasing: Fix the check for an even micro version number
The check for the version number was checking against the 2.0.0 micro version number which isn't expected to change for a long time so the test was useless.
-rw-r--r--build/autotools/Makefile.am.release4
1 files changed, 2 insertions, 2 deletions
diff --git a/build/autotools/Makefile.am.release b/build/autotools/Makefile.am.release
index 699b2aae..cbee6f03 100644
--- a/build/autotools/Makefile.am.release
+++ b/build/autotools/Makefile.am.release
@@ -59,9 +59,9 @@ release-verify-sane-changelogs: changelogs
release-verify-even-micro:
@echo -n "Checking that $(VERSION) has an even micro component..."
- @test "$(COGL_MICRO_VERSION)" = "`echo $(COGL_MICRO_VERSION)/2*2 | bc`" || \
+ @test "$(COGL_1_MICRO_VERSION)" = "`echo $(COGL_1_MICRO_VERSION)/2*2 | bc`" || \
(echo "Ouch." && \
- echo "The version micro component '$(COGL_MICRO_VERSION)' is not an even number." && \
+ echo "The version micro component '$(COGL_1_MICRO_VERSION)' is not an even number." && \
echo "The version in configure.ac must be incremented before a new release." && \
false)
@echo "Good."