Gentoo Archives: gentoo-commits

From: Thomas Deutschmann <whissi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/genkernel:master commit in: patches/libgpg-error/1.42/
Date: Tue, 06 Jul 2021 18:08:01
Message-Id: 1625592281.c731bb716fde0c5cda0fbe7b81ee2371f09378c1.whissi@gentoo
1 commit: c731bb716fde0c5cda0fbe7b81ee2371f09378c1
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jul 6 17:23:26 2021 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Tue Jul 6 17:24:41 2021 +0000
6 URL: https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=c731bb71
7
8 libgpg-error: Fix cross compile
9
10 Fixes: 819c69b3 ("Bump libgpg-error to v1.42")
11 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
12
13 .../1.42/libgpg-error-1.42-cross_compile.patch | 32 ++++++++++++++++++++++
14 1 file changed, 32 insertions(+)
15
16 diff --git a/patches/libgpg-error/1.42/libgpg-error-1.42-cross_compile.patch b/patches/libgpg-error/1.42/libgpg-error-1.42-cross_compile.patch
17 new file mode 100644
18 index 0000000..78d98dd
19 --- /dev/null
20 +++ b/patches/libgpg-error/1.42/libgpg-error-1.42-cross_compile.patch
21 @@ -0,0 +1,32 @@
22 +From 33593864cd54143db594c4237bba41e14179061c Mon Sep 17 00:00:00 2001
23 +From: David Michael <fedora.dm0@×××××.com>
24 +Date: Fri, 26 Mar 2021 16:06:50 +0900
25 +Subject: [PATCH] build: Fix generation of lock-obj-pub.native.h for cross
26 + build.
27 +
28 +* src/gen-lock-obj.sh: Capture echo output with quotes.
29 +
30 +--
31 +
32 +Fixes-commit: 99ae862a96a569724f49a604ebb7d3f6d2c2d374
33 +Signed-off-by: David Michael <fedora.dm0@×××××.com>
34 +---
35 + src/gen-lock-obj.sh | 2 +-
36 + 1 file changed, 1 insertion(+), 1 deletion(-)
37 +
38 +diff --git a/src/gen-lock-obj.sh b/src/gen-lock-obj.sh
39 +index a710f0c..258eec6 100755
40 +--- a/src/gen-lock-obj.sh
41 ++++ b/src/gen-lock-obj.sh
42 +@@ -38,7 +38,7 @@
43 + # AWK=gawk ./gen-lock-obj.sh
44 + #
45 +
46 +-if test -n `echo -n`; then
47 ++if test -n "`echo -n`"; then
48 + ECHO_C='\c'
49 + ECHO_N=''
50 + else
51 +--
52 +2.11.0
53 +