summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/libgpg-error/libgpg-error/fix-cross.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-support/libgpg-error/libgpg-error/fix-cross.patch')
-rw-r--r--meta/recipes-support/libgpg-error/libgpg-error/fix-cross.patch28
1 files changed, 0 insertions, 28 deletions
diff --git a/meta/recipes-support/libgpg-error/libgpg-error/fix-cross.patch b/meta/recipes-support/libgpg-error/libgpg-error/fix-cross.patch
deleted file mode 100644
index ae424cdb9a..0000000000
--- a/meta/recipes-support/libgpg-error/libgpg-error/fix-cross.patch
+++ /dev/null
@@ -1,28 +0,0 @@
1From: David Michael <fedora.dm0@gmail.com>
2Date: Fri, 26 Mar 2021 07:06:50 +0000 (+0900)
3Subject: build: Fix generation of lock-obj-pub.native.h for cross build.
4X-Git-Url: http://git.gnupg.org/cgi-bin/gitweb.cgi?p=libgpg-error.git;a=commitdiff_plain;h=33593864cd54143db594c4237bba41e14179061c
5
6build: Fix generation of lock-obj-pub.native.h for cross build.
7
8* src/gen-lock-obj.sh: Capture echo output with quotes.
9
10Fixes-commit: 99ae862a96a569724f49a604ebb7d3f6d2c2d374
11Signed-off-by: David Michael <fedora.dm0@gmail.com>
12Upstream-Status: Backport
13Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
14---
15
16diff --git a/src/gen-lock-obj.sh b/src/gen-lock-obj.sh
17index a710f0c..258eec6 100755
18--- a/src/gen-lock-obj.sh
19+++ b/src/gen-lock-obj.sh
20@@ -38,7 +38,7 @@
21 # AWK=gawk ./gen-lock-obj.sh
22 #
23
24-if test -n `echo -n`; then
25+if test -n "`echo -n`"; then
26 ECHO_C='\c'
27 ECHO_N=''
28 else