summaryrefslogtreecommitdiffstats
path: root/recipes-qt/qt5/qtbase-5.1.1/0001-configure-preserve-built-qmake-and-swap-with-native-.patch
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-qt/qt5/qtbase-5.1.1/0001-configure-preserve-built-qmake-and-swap-with-native-.patch')
-rw-r--r--recipes-qt/qt5/qtbase-5.1.1/0001-configure-preserve-built-qmake-and-swap-with-native-.patch29
1 files changed, 0 insertions, 29 deletions
diff --git a/recipes-qt/qt5/qtbase-5.1.1/0001-configure-preserve-built-qmake-and-swap-with-native-.patch b/recipes-qt/qt5/qtbase-5.1.1/0001-configure-preserve-built-qmake-and-swap-with-native-.patch
deleted file mode 100644
index 048eab76..00000000
--- a/recipes-qt/qt5/qtbase-5.1.1/0001-configure-preserve-built-qmake-and-swap-with-native-.patch
+++ /dev/null
@@ -1,29 +0,0 @@
1From 6cd7ade28662730e5de89a171501e3902b321ffc Mon Sep 17 00:00:00 2001
2From: Denys Dmytriyenko <denys@ti.com>
3Date: Mon, 11 Nov 2013 20:22:34 -0500
4Subject: [PATCH] configure: preserve built qmake and swap with native one
5
6Let configure script build the real qmake, but right after it's built, swap
7it with a native qmake for further internal use, preserving the real one.
8
9Signed-off-by: Denys Dmytriyenko <denys@ti.com>
10---
11 configure | 2 ++
12 1 file changed, 2 insertions(+)
13
14diff --git a/configure b/configure
15index 140c7b4..304d30f 100755
16--- a/configure
17+++ b/configure
18@@ -4104,6 +4104,8 @@ if true; then ###[ '!' -f "$outpath/bin/qmake" ];
19
20 (cd "$outpath/qmake"; "$MAKE") || exit 2
21 fi # Build qmake
22+mv "$outpath/bin/qmake" "$outpath/bin/qmake-real"
23+mv "$outpath/bin/qmake-native" "$outpath/bin/qmake"
24
25 echo "Running configuration tests..."
26
27--
281.8.3.2
29