From 49e5dffa9938ebd92cc8df9572973abb3dee0ec2 Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Sun, 22 May 2022 22:39:56 +0200 Subject: [PATCH] Backward compatibility of build.sh call - qt5 and qt4 options are accepted but ingored --- build.sh | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/build.sh b/build.sh index 97ef2b73a..daafa8c93 100755 --- a/build.sh +++ b/build.sh @@ -205,6 +205,12 @@ while [ "$*" != "" ]; do -libexpat) HAVE_EXPAT=1 ;; + -qt5) + echo "*** WARNING: -qt5 option is ignored - Qt version is auto-detected now." + ;; + -qt4) + echo "*** WARNING: -qt4 option is ignored - Qt version is auto-detected now." + ;; -option) MAKE_OPT="$MAKE_OPT $1" shift @@ -243,8 +249,6 @@ while [ "$*" != "" ]; do echo "" echo "Special options (usually auto-selected from ruby/python/Qt installation):" echo "" - echo " -qt4|-qt5 Use Qt4 or Qt5 API [default: auto detect]" - echo "" echo " -rblib Location of the .so/.dll to link for Ruby support" echo " -rbinc Location of the Ruby headers (in particular 'ruby.h')" echo " -rbinc and -rblib must be set to enable Ruby support"