summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/perl/files/0001-configure_tool.sh-do-not-quote-the-argument-to-comma.patch
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2019-06-17 16:48:59 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-06-18 11:23:48 +0100
commit6896ca82f106c65e6c7d08986cfe86d2305c6afa (patch)
treea9af7a0bb0371d61c86376805798839e4ad6e052 /meta/recipes-devtools/perl/files/0001-configure_tool.sh-do-not-quote-the-argument-to-comma.patch
parent646b596c99119f40060d84a4bc6349f3a2a4e893 (diff)
downloadpoky-6896ca82f106c65e6c7d08986cfe86d2305c6afa.tar.gz
perl: Move perl-sanity -> perl
This was moved during the perl cleanup, it can/should be moved back now as its confusing too many people. (From OE-Core rev: ce69c21707aa19ab8a3f6c07dc5a560671ab53a4) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/perl/files/0001-configure_tool.sh-do-not-quote-the-argument-to-comma.patch')
-rw-r--r--meta/recipes-devtools/perl/files/0001-configure_tool.sh-do-not-quote-the-argument-to-comma.patch29
1 files changed, 29 insertions, 0 deletions
diff --git a/meta/recipes-devtools/perl/files/0001-configure_tool.sh-do-not-quote-the-argument-to-comma.patch b/meta/recipes-devtools/perl/files/0001-configure_tool.sh-do-not-quote-the-argument-to-comma.patch
new file mode 100644
index 0000000000..0aaeaa29eb
--- /dev/null
+++ b/meta/recipes-devtools/perl/files/0001-configure_tool.sh-do-not-quote-the-argument-to-comma.patch
@@ -0,0 +1,29 @@
1From a66811c487ecf8ba8724879c253bb10dfa82aeb5 Mon Sep 17 00:00:00 2001
2From: Alexander Kanavin <alex.kanavin@gmail.com>
3Date: Fri, 1 Jun 2018 19:57:32 +0300
4Subject: [PATCH] configure_tool.sh: do not quote the argument to 'command'
5
6As it seems to break things if the argument has spaces and arguments in it.
7
8Upstream-Status: Pending
9Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
10---
11 cnf/configure_tool.sh | 2 +-
12 1 file changed, 1 insertion(+), 1 deletion(-)
13
14diff --git a/cnf/configure_tool.sh b/cnf/configure_tool.sh
15index 32201c0..461bc68 100644
16--- a/cnf/configure_tool.sh
17+++ b/cnf/configure_tool.sh
18@@ -2,7 +2,7 @@
19
20 tryprog() {
21 log "trying $1=$2"
22- if command -v "$2" 1>/dev/null 2>/dev/null; then
23+ if command -v $2 1>/dev/null 2>/dev/null; then
24 define "$1" "$2"
25 result "$2"
26 return 0
27--
282.17.0
29