summaryrefslogtreecommitdiffstats
path: root/meta/recipes-qt/qt4/qt4-4.8.6/0029-aarch64_arm64_fix_arch_detection.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-qt/qt4/qt4-4.8.6/0029-aarch64_arm64_fix_arch_detection.patch')
-rw-r--r--meta/recipes-qt/qt4/qt4-4.8.6/0029-aarch64_arm64_fix_arch_detection.patch53
1 files changed, 53 insertions, 0 deletions
diff --git a/meta/recipes-qt/qt4/qt4-4.8.6/0029-aarch64_arm64_fix_arch_detection.patch b/meta/recipes-qt/qt4/qt4-4.8.6/0029-aarch64_arm64_fix_arch_detection.patch
new file mode 100644
index 0000000000..fbd32b173d
--- /dev/null
+++ b/meta/recipes-qt/qt4/qt4-4.8.6/0029-aarch64_arm64_fix_arch_detection.patch
@@ -0,0 +1,53 @@
1From 800abbba658203fc8e746e3fc780a297cd4110cf Mon Sep 17 00:00:00 2001
2From: =?UTF-8?q?Lisandro=20Dami=C3=A1n=20Nicanor=20P=C3=A9rez=20Meyer?=
3 <perezmeyer@gmail.com>
4Date: Wed, 20 Aug 2014 17:52:49 -0300
5Subject: [PATCH] Fix AArch64/arm64 detection.
6
7The detection needs to go before arm, else the system will detect AArch64/arm64
8as arm.
9
10This patch comes from Wookey, he has agreed to put it under BSD or Expat
11to allow it's inclusion in here:
12<https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=735488#255>
13
14Change-Id: Ic2171c03fca8bb871347940fa3a2bc467776f797
15
16
17Upstream-Status: Pending
18
19Signed-off-by: Kai Kang <kai.kang@windriver.com>
20---
21 configure | 12 ++++++------
22 1 file changed, 6 insertions(+), 6 deletions(-)
23
24diff --git a/configure b/configure
25index a9ba7c8..eb88b72 100755
26--- a/configure
27+++ b/configure
28@@ -3241,17 +3241,17 @@ if [ -z "${CFG_HOST_ARCH}" ]; then
29 fi
30 CFG_HOST_ARCH=s390
31 ;;
32- *:*:arm*)
33+ *:*:aarch64*|*:*:arm64*)
34 if [ "$OPT_VERBOSE" = "yes" ]; then
35- echo " ARM (arm)"
36+ echo " AArch64 (aarch64)"
37 fi
38- CFG_HOST_ARCH=arm
39+ CFG_HOST_ARCH=aarch64
40 ;;
41- *:*:aarch64*)
42+ *:*:arm*)
43 if [ "$OPT_VERBOSE" = "yes" ]; then
44- echo " AArch64 (aarch64)"
45+ echo " ARM (arm)"
46 fi
47- CFG_HOST_ARCH=aarch64
48+ CFG_HOST_ARCH=arm
49 ;;
50 Linux:*:sparc*)
51 if [ "$OPT_VERBOSE" = "yes" ]; then
52--
532.1.0