mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-15 13:53:19 +00:00
added better testing
Original commit message from CVS: added better testing
This commit is contained in:
parent
ec879bbd38
commit
c85396cd9e
1 changed files with 2 additions and 2 deletions
|
@ -31,8 +31,8 @@ version_check ()
|
|||
|
||||
debug "major $MAJOR minor $MINOR micro $MICRO"
|
||||
VERSION=$MAJOR
|
||||
if test ! -z $MINOR; then VERSION=$VERSION.$MINOR; else MINOR=0; fi
|
||||
if test ! -z $MICRO; then VERSION=$VERSION.$MICRO; else MICRO=0; fi
|
||||
if test ! -z "$MINOR"; then VERSION=$VERSION.$MINOR; else MINOR=0; fi
|
||||
if test ! -z "$MICRO"; then VERSION=$VERSION.$MICRO; else MICRO=0; fi
|
||||
|
||||
debug "major $MAJOR minor $MINOR micro $MICRO"
|
||||
echo "Checking for $1 > $VERSION ..."
|
||||
|
|
Loading…
Reference in a new issue