summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/libgcrypt/files/0001-Makefile.am-add-a-missing-space.patch
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2021-02-28 16:36:53 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-03-02 14:15:33 +0000
commit31421cc447f15fdcd5ad023bebca451282764750 (patch)
tree0d9ea946902d063efa12f39a961dad8b230f190a /meta/recipes-support/libgcrypt/files/0001-Makefile.am-add-a-missing-space.patch
parentde8475d206d6b17c6b7907ed06f73c6586cf4f48 (diff)
downloadpoky-31421cc447f15fdcd5ad023bebca451282764750.tar.gz
libgcrypt: update 1.8.7 -> 1.9.2
Drop backports. Add a patch that inserts missing spaces in Makefiles. Drop determinism.patch: upstream has moved the git stuff to an external script, which has a guard that checkes for presence of .git/ in source tree. License-Update: additional source file listed (From OE-Core rev: ad2eae801c7809db3f4830f19efdad78d1a62d59) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/libgcrypt/files/0001-Makefile.am-add-a-missing-space.patch')
-rw-r--r--meta/recipes-support/libgcrypt/files/0001-Makefile.am-add-a-missing-space.patch41
1 files changed, 41 insertions, 0 deletions
diff --git a/meta/recipes-support/libgcrypt/files/0001-Makefile.am-add-a-missing-space.patch b/meta/recipes-support/libgcrypt/files/0001-Makefile.am-add-a-missing-space.patch
new file mode 100644
index 0000000000..8fbed9add6
--- /dev/null
+++ b/meta/recipes-support/libgcrypt/files/0001-Makefile.am-add-a-missing-space.patch
@@ -0,0 +1,41 @@
1From b8192ff67ed46ea2cc4282fa1856ce2868223737 Mon Sep 17 00:00:00 2001
2From: Alexander Kanavin <alex.kanavin@gmail.com>
3Date: Wed, 24 Feb 2021 19:43:07 +0000
4Subject: [PATCH] Makefile.am: add a missing space
5
6Upstream-Status: Pending
7Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
8---
9 cipher/Makefile.am | 2 +-
10 doc/Makefile.am | 2 +-
11 2 files changed, 2 insertions(+), 2 deletions(-)
12
13diff --git a/cipher/Makefile.am b/cipher/Makefile.am
14index 1cf5072..b3ca225 100644
15--- a/cipher/Makefile.am
16+++ b/cipher/Makefile.am
17@@ -143,7 +143,7 @@ gost-sb.h: gost-s-box
18
19 gost-s-box: gost-s-box.c
20 $(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(LDFLAGS_FOR_BUILD) \
21- $(CPPFLAGS_FOR_BUILD)-o $@ $(srcdir)/gost-s-box.c
22+ $(CPPFLAGS_FOR_BUILD) -o $@ $(srcdir)/gost-s-box.c
23
24
25 if ENABLE_O_FLAG_MUNGING
26diff --git a/doc/Makefile.am b/doc/Makefile.am
27index fd7aac2..1703bd9 100644
28--- a/doc/Makefile.am
29+++ b/doc/Makefile.am
30@@ -43,7 +43,7 @@ man_MANS = $(myman_pages)
31
32 yat2m: yat2m.c
33 $(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(LDFLAGS_FOR_BUILD) \
34- $(CPPFLAGS_FOR_BUILD)-o $@ $(srcdir)/yat2m.c
35+ $(CPPFLAGS_FOR_BUILD) -o $@ $(srcdir)/yat2m.c
36
37 .fig.png:
38 fig2dev -L png `test -f '$<' || echo '$(srcdir)/'`$< $@
39--
402.17.1
41