File 0001-Do-not-create-qmake-if-already-present.patch of Package libqt4
From fdc05e91a978bc2ce16323987a3d40b28143a579 Mon Sep 17 00:00:00 2001
From: Ralf Habacker <ralf.habacker@freenet.de>
Date: Sun, 21 Jul 2019 19:36:18 +0200
Subject: [PATCH 1/3] Do not create qmake if already present
---
configure | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configure b/configure
index 10ad7ca0b0..a42ed6d243 100755
--- a/configure
+++ b/configure
@@ -4919,7 +4919,7 @@ setBootstrapVariable()
}
# build qmake
-if true; then ###[ '!' -f "$outpath/bin/qmake" ];
+if [ ! -f "$outpath/bin/qmake" ]; then
echo "Creating qmake. Please wait..."
OLD_QCONFIG_H=
--
2.16.4