From 28ccb78b5680b1128d73e08f5b2208e1076344e8 Mon Sep 17 00:00:00 2001 From: Steve Baker Date: Wed, 6 Feb 2002 08:22:05 +0000 Subject: [PATCH] use numerical comparisions for version check Original commit message from CVS: use numerical comparisions for version check --- autogen.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/autogen.sh b/autogen.sh index 69d574a..0b80f99 100755 --- a/autogen.sh +++ b/autogen.sh @@ -83,14 +83,14 @@ version_check () #start checking the version debug "version check" - if [ ! "$pkg_major" \> "$MAJOR" ]; then - debug "$pkg_major <= $MAJOR" - if [ "$pkg_major" \< "$MAJOR" ]; then + if [ ! "$pkg_major" -gt "$MAJOR" ]; then + debug "$pkg_major -le $MAJOR" + if [ "$pkg_major" -lt "$MAJOR" ]; then WRONG=1 - elif [ ! "$pkg_minor" \> "$MINOR" ]; then - if [ "$pkg_minor" \< "$MINOR" ]; then + elif [ ! "$pkg_minor" -gt "$MINOR" ]; then + if [ "$pkg_minor" -lt "$MINOR" ]; then WRONG=1 - elif [ "$pkg_micro" \< "$MICRO" ]; then + elif [ "$pkg_micro" -lt "$MICRO" ]; then WRONG=1 fi fi -- 2.7.4