Files
qt5/configure
Lucie Gérard d902125e23 Add license directory and update remaining license format in coin
Task-number: QTBUG-108364
Change-Id: I1250a46d60d5b4e85258b93f8f6f6fc4631b3a70
Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
(cherry picked from commit 6757a4c399)
2023-09-07 10:40:22 +02:00

19 lines
431 B
Bash
Executable File

#! /bin/sh
# Copyright (C) 2020 The Qt Company Ltd.
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
srcpath=`dirname $0`
srcpath=`(cd "$srcpath"; pwd)`
configure=$srcpath/qtbase/configure
if [ ! -e "$configure" ]; then
echo "$configure not found. Did you forget to run \"init-repository\"?" >&2
exit 1
fi
set -ex
mkdir -p qtbase
cd qtbase
exec "$configure" -top-level "$@"