aboutsummaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorTor Arne Vestbø <tor.arne.vestbo@qt.io>2021-03-16 16:13:48 +0100
committerTor Arne Vestbø <tor.arne.vestbo@qt.io>2021-03-18 12:45:24 +0100
commiteaed67d30711f826f1e6fcdb26dedc1a0ea45030 (patch)
treee7d360dc714c82f1447c436af86cecdb1f8f57fb /configure
parentc1f24b99db247cdd27e42f2a1814f025a89d1597 (diff)
configure: Let shell deal with errexit and xtrace
Change-Id: I9ae6d6003885607d2300d4d84e8629d7891420db Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure7
1 files changed, 3 insertions, 4 deletions
diff --git a/configure b/configure
index 89b39429..ced66676 100755
--- a/configure
+++ b/configure
@@ -35,10 +35,9 @@ if [ ! -e "$configure" ]; then
exit 1
fi
-mkdir -p qtbase || exit
+set -ex
-echo "+ cd qtbase"
-cd qtbase || exit
+mkdir -p qtbase
+cd qtbase
-echo "+ $configure -top-level $@"
exec "$configure" -top-level "$@"