summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrédéric Crozat <fcrozat@src.gnome.org>2001-07-24 07:39:00 +0000
committerFrédéric Crozat <fcrozat@src.gnome.org>2001-07-24 07:39:00 +0000
commit211a7d3850fe2c20d7b1208c34e54d7505139cd4 (patch)
treeb08edfb8a1ef7c42f861412f96a827c76c38ca8e
parent1e72d5884a41b85e8d971d9af7c4803e80122a81 (diff)
downloadgnome-common-211a7d3850fe2c20d7b1208c34e54d7505139cd4.tar.gz
Correct minimal version test
* gnome-print-check.m4 (AM_PATH_GNOME_PRINT): Correct minimal version test svn path=/trunk/; revision=1857
-rw-r--r--macros/ChangeLog5
-rw-r--r--macros/gnome-print-check.m44
2 files changed, 7 insertions, 2 deletions
diff --git a/macros/ChangeLog b/macros/ChangeLog
index adfede3..f7c7173 100644
--- a/macros/ChangeLog
+++ b/macros/ChangeLog
@@ -1,3 +1,8 @@
+2001-07-24 Frederic Crozat <fcrozat@mandrakesoft.com>
+
+ * gnome-print-check.m4 (AM_PATH_GNOME_PRINT):
+ Correct minimal version test
+
2001-06-22 Eskil Heyn Olsen <eskil@eskil.dk>
* gnome-pilot.m4:
diff --git a/macros/gnome-print-check.m4 b/macros/gnome-print-check.m4
index 49fd6c6..968fcc0 100644
--- a/macros/gnome-print-check.m4
+++ b/macros/gnome-print-check.m4
@@ -20,8 +20,8 @@ AC_DEFUN([AM_PATH_GNOME_PRINT],
else
AC_MSG_CHECKING(for GNOME-PRINT - version >= $min_version)
if `$GNOME_CONFIG --libs print > /dev/null 2>&1`; then
- rqmajor=`echo "$1" | sed -e 's/cvs-//' | sed 's/\([[0-9]]*\)\.\([[0-9]]*\).*/\1/'`
- rqminor=`echo "$1" | sed -e 's/cvs-//' | sed 's/\([[0-9]]*\)\.\([[0-9]]*\).*/\2/'`
+ rqmajor=`echo "$min_version" | sed -e 's/cvs-//' | sed 's/\([[0-9]]*\)\.\([[0-9]]*\).*/\1/'`
+ rqminor=`echo "$min_version" | sed -e 's/cvs-//' | sed 's/\([[0-9]]*\)\.\([[0-9]]*\).*/\2/'`
major=`$GNOME_CONFIG --modversion print | sed -e 's/gnome-print-//' | sed -e 's/cvs-//' | sed 's/\([[0-9]]*\)\.\([[0-9]]*\).*/\1/'`
minor=`$GNOME_CONFIG --modversion print | sed -e 's/gnome-print-//' | sed -e 's/cvs-//' | sed 's/\([[0-9]]*\)\.\([[0-9]]*\).*/\2/'`
if test "$major" -ge "$rqmajor"; then