2013-06-18 15:10:00 +00:00
|
|
|
#! /bin/sh
|
2023-08-29 07:46:33 +00:00
|
|
|
# Copyright (C) 2020 The Qt Company Ltd.
|
|
|
|
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
2012-02-14 05:01:17 +00:00
|
|
|
|
2013-06-18 15:10:00 +00:00
|
|
|
srcpath=`dirname $0`
|
2016-12-22 16:03:53 +00:00
|
|
|
srcpath=`(cd "$srcpath"; pwd)`
|
2013-06-18 15:10:00 +00:00
|
|
|
configure=$srcpath/qtbase/configure
|
|
|
|
if [ ! -e "$configure" ]; then
|
|
|
|
echo "$configure not found. Did you forget to run \"init-repository\"?" >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
2012-02-14 05:01:17 +00:00
|
|
|
|
2021-03-16 15:13:48 +00:00
|
|
|
set -ex
|
2011-04-27 10:34:00 +00:00
|
|
|
|
2021-03-16 15:13:48 +00:00
|
|
|
mkdir -p qtbase
|
|
|
|
cd qtbase
|
2011-04-27 10:34:00 +00:00
|
|
|
|
2013-06-18 13:14:30 +00:00
|
|
|
exec "$configure" -top-level "$@"
|