diff options
author | Andrej Valek <andrej.valek@siemens.com> | 2018-07-17 11:10:33 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-08-16 09:49:38 +0100 |
commit | 82108b6755e917230d55c51f7084f32b3336cdf1 (patch) | |
tree | e03412a5b46bf915e7e4c034789492a511ba0354 /meta | |
parent | 38125456ffa6112941a3608fcba9ed2032353740 (diff) | |
download | poky-82108b6755e917230d55c51f7084f32b3336cdf1.tar.gz |
openssl-1.1: fix c_rehash perl errors
Patch original c_rehash script with Debian patch instead
of overriding it with own version.
Error output from c_reshah without patching:
Unknown regexp modifier "/b" at ./c_rehash line 15, at end of line
Unknown regexp modifier "/W" at ./c_rehash line 28, at end of line
Unknown regexp modifier "/3" at ./c_rehash line 28, at end of line
Unknown regexp modifier "/2" at ./c_rehash line 28, at end of line
No such class installdir at ./c_rehash line 63, near "Prefix our
installdir"
(Might be a runaway multi-line // string starting on line 28)
syntax error at ./c_rehash line 63, near "Prefix our installdir"
Can't redeclare "my" in "my" at ./c_rehash line 68, near ""
Execution of ./c_rehash aborted due to compilation errors.
(From OE-Core rev: f8a826f497073533a3e4c390255ae197d65d6ef3)
Signed-off-by: Andrej Valek <andrej.valek@siemens.com>
Signed-off-by: Marko Peter <peter.marko@siemens.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-connectivity/openssl/openssl/0002-Revert-util-dofile.pl-only-quote-stuff-that-actually.patch | 29 | ||||
-rw-r--r-- | meta/recipes-connectivity/openssl/openssl_1.1.0h.bb | 1 |
2 files changed, 30 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 @@ | |||
1 | openssl-1.1.0h: Fix c_rehash perl errors | ||
2 | |||
3 | [No upstream tracking] -- https://github.com/openssl/openssl/issues/5772 | ||
4 | |||
5 | dofile.pl: Revert only quote stuff that actually needs quoting | ||
6 | |||
7 | This wasn't a good solution, too many things depend on the quotes being | ||
8 | there consistently. | ||
9 | |||
10 | Upstream-Status: Backport [https://github.com/openssl/openssl/commit/00701e5ea84861b74d9d624f21a6b3fcb12e8acd] | ||
11 | bug: 5772 | ||
12 | Signed-off-by: Andrej Valek <andrej.valek@siemens.com> | ||
13 | |||
14 | diff --git a/util/dofile.pl b/util/dofile.pl | ||
15 | index 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 | ||
diff --git a/meta/recipes-connectivity/openssl/openssl_1.1.0h.bb b/meta/recipes-connectivity/openssl/openssl_1.1.0h.bb index 88ef42e255..1a4e4348c2 100644 --- a/meta/recipes-connectivity/openssl/openssl_1.1.0h.bb +++ b/meta/recipes-connectivity/openssl/openssl_1.1.0h.bb | |||
@@ -14,6 +14,7 @@ SRC_URI = "http://www.openssl.org/source/openssl-${PV}.tar.gz \ | |||
14 | file://run-ptest \ | 14 | file://run-ptest \ |
15 | file://openssl-c_rehash.sh \ | 15 | file://openssl-c_rehash.sh \ |
16 | file://0001-Take-linking-flags-from-LDFLAGS-env-var.patch \ | 16 | file://0001-Take-linking-flags-from-LDFLAGS-env-var.patch \ |
17 | file://0002-Revert-util-dofile.pl-only-quote-stuff-that-actually.patch \ | ||
17 | " | 18 | " |
18 | 19 | ||
19 | SRC_URI_append_class-nativesdk = " \ | 20 | SRC_URI_append_class-nativesdk = " \ |