summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorKalle Viironen <kalle.viironen@digia.com>2014-03-31 16:09:22 +0300
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-04-01 11:15:52 +0200
commit3c070b58b29a4ff4ea8cdc913a1e236042ee4fda (patch)
tree08a9d365d2293546ee24ebec2d8c0060859869e0 /configure
parent0cb2c760c219514849ab0f6be8e5368f92dfa5d9 (diff)
Use configure -confirm-license option also in commercial Qt versions
Pass the -confirm-license option to external license checker which is used in Qt commercial version. Change-Id: I62326d1e6a8307dae64535ecf2ced762130b7e8f Reviewed-by: Miikka Heikkinen <miikka.heikkinen@digia.com> Reviewed-by: Samuli Piippo <samuli.piippo@digia.com>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure b/configure
index 52588c39d2..3fe8d43cf0 100755
--- a/configure
+++ b/configure
@@ -2773,7 +2773,8 @@ if [ -f "$relpath"/LICENSE.PREVIEW.COMMERCIAL ] && [ $COMMERCIAL_USER = "yes" ];
EditionString="Technology Preview"
elif [ $COMMERCIAL_USER = "yes" ]; then
if test -x "$relpath/bin/licheck"; then
- LicheckOutput=`$relpath/bin/licheck $relpath $outpath $PLATFORM $XPLATFORM`
+ LicheckOutput=`$relpath/bin/licheck $OPT_CONFIRM_LICENSE $relpath $outpath\
+ $PLATFORM $XPLATFORM`
if [ $? -ne 0 ]; then
exit 1
else