mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 11:41:09 +00:00
this makes somewhat more sense
Original commit message from CVS: this makes somewhat more sense
This commit is contained in:
parent
1756908145
commit
4df339a5c8
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue