summaryrefslogtreecommitdiffstats
path: root/recipes-qt/qt5/qtbase-git
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-qt/qt5/qtbase-git')
-rw-r--r--recipes-qt/qt5/qtbase-git/0014-configure.prf-Allow-to-add-extra-arguments-to-make.patch35
1 files changed, 35 insertions, 0 deletions
diff --git a/recipes-qt/qt5/qtbase-git/0014-configure.prf-Allow-to-add-extra-arguments-to-make.patch b/recipes-qt/qt5/qtbase-git/0014-configure.prf-Allow-to-add-extra-arguments-to-make.patch
new file mode 100644
index 00000000..7d4b32bf
--- /dev/null
+++ b/recipes-qt/qt5/qtbase-git/0014-configure.prf-Allow-to-add-extra-arguments-to-make.patch
@@ -0,0 +1,35 @@
1From c57cec0fdcbc89671ef297c68554e27fbe99c09d Mon Sep 17 00:00:00 2001
2From: Martin Jansa <Martin.Jansa@gmail.com>
3Date: Thu, 9 May 2013 10:06:50 +0200
4Subject: [PATCH 14/14] configure.prf: Allow to add extra arguments to make
5
6* sometimes we would like to add -e or define some variable and respect it from both
7 Makefiles used in configure tests and also Maakefiles to build the application
8
9Change-Id: Ib29beb89cc9b179dddd40d3b212b7c200d29a469
10---
11 mkspecs/features/configure.prf | 4 ++--
12 1 file changed, 2 insertions(+), 2 deletions(-)
13
14diff --git a/mkspecs/features/configure.prf b/mkspecs/features/configure.prf
15index b4569df..50ca562 100644
16--- a/mkspecs/features/configure.prf
17+++ b/mkspecs/features/configure.prf
18@@ -57,12 +57,12 @@ defineTest(qtCompileTest) {
19 qmake_configs = "\"CONFIG -= qt debug_and_release app_bundle lib_bundle\""
20
21 # Clean up after previous run
22- exists($$test_out_dir/Makefile):qtRunLoggedCommand("$$test_cmd_base $$QMAKE_MAKE distclean")
23+ exists($$test_out_dir/Makefile):qtRunLoggedCommand("$$test_cmd_base $$QMAKE_MAKE $$(QMAKE_MAKE_ARGS) distclean")
24
25 mkpath($$test_out_dir)|error("Aborting.")
26
27 qtRunLoggedCommand("$$test_cmd_base $$system_quote($$system_path($$QMAKE_QMAKE)) $$qmake_configs $$shell_quote($$test_dir)") {
28- qtRunLoggedCommand("$$test_cmd_base $$QMAKE_MAKE") {
29+ qtRunLoggedCommand("$$test_cmd_base $$QMAKE_MAKE $$(QMAKE_MAKE_ARGS)") {
30 log("yes$$escape_expand(\\n)")
31 msg = "test $$1 succeeded"
32 write_file($$QMAKE_CONFIG_LOG, msg, append)
33--
341.8.2.1
35