summaryrefslogtreecommitdiffstats
path: root/meta/recipes-connectivity/openssl/openssl/0002-Revert-util-dofile.pl-only-quote-stuff-that-actually.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-connectivity/openssl/openssl/0002-Revert-util-dofile.pl-only-quote-stuff-that-actually.patch')
-rw-r--r--meta/recipes-connectivity/openssl/openssl/0002-Revert-util-dofile.pl-only-quote-stuff-that-actually.patch29
1 files changed, 29 insertions, 0 deletions
diff --git a/meta/recipes-connectivity/openssl/openssl/0002-Revert-util-dofile.pl-only-quote-stuff-that-actually.patch b/meta/recipes-connectivity/openssl/openssl/0002-Revert-util-dofile.pl-only-quote-stuff-that-actually.patch
new file mode 100644
index 0000000000..81a9b2d060
--- /dev/null
+++ b/meta/recipes-connectivity/openssl/openssl/0002-Revert-util-dofile.pl-only-quote-stuff-that-actually.patch
@@ -0,0 +1,29 @@
1openssl-1.1.0h: Fix c_rehash perl errors
2
3[No upstream tracking] -- https://github.com/openssl/openssl/issues/5772
4
5dofile.pl: Revert only quote stuff that actually needs quoting
6
7This wasn't a good solution, too many things depend on the quotes being
8there consistently.
9
10Upstream-Status: Backport [https://github.com/openssl/openssl/commit/00701e5ea84861b74d9d624f21a6b3fcb12e8acd]
11bug: 5772
12Signed-off-by: Andrej Valek <andrej.valek@siemens.com>
13
14diff --git a/util/dofile.pl b/util/dofile.pl
15index 955224df7d..b0e20681dd 100644
16--- a/util/dofile.pl
17+++ b/util/dofile.pl
18@@ -99,9 +99,9 @@ package main;
19 # This adds quotes (") around the given string, and escapes any $, @, \,
20 # " and ' by prepending a \ to them.
21 sub quotify1 {
22- my $s = my $orig = shift @_;
23+ my $s = shift @_;
24 $s =~ s/([\$\@\\"'])/\\$1/g;
25- $s ne $orig || $s =~ /\s/ ? '"'.$s.'"' : $s;
26+ '"'.$s.'"';
27 }
28
29 # quotify_l LIST