this makes somewhat more sense

Original commit message from CVS:
this makes somewhat more sense
This commit is contained in:
Thomas Vander Stichele 2001-12-10 13:36:11 +00:00
parent 1756908145
commit 4df339a5c8

View file

@ -58,11 +58,11 @@ version_check ()
#start checking the version
debug "version check"
if [ "$pkg_major" \< "$MAJOR -o "$pkg_major" = $MAJOR" ]; then
if [ ! "$pkg_major" \> "$MAJOR" ]; then
debug "$pkg_major <= $MAJOR"
if [ "$pkg_major" \< "$MAJOR" ]; then
WRONG=1
elif [ "$pkg_minor" \< "$MINOR -o $pkg_minor = $MINOR" ]; then
elif [ ! "$pkg_minor" \> "$MINOR" ]; then
if [ "$pkg_minor" \< "$MINOR" ]; then
WRONG=1
elif [ "$pkg_micro" \< "$MICRO" ]; then