blob: e40b2be36228a65cd9bff3074c0cbf977414ffa7 [file] [log] [blame]
Andrew Geissler78b72792022-06-14 06:47:25 -05001From b729a356538d499fe25e82bfc78ea663bdaca0a8 Mon Sep 17 00:00:00 2001
2From: Lei Maohui <leimaohui@fujitsu.com>
3Date: Mon, 23 May 2022 10:44:43 +0900
4Subject: [PATCH] Creating .hmac file should be excuted in target environment,
5 so deleted it from build process.
6
7Upstream-Status: Inappropriate [https://gitlab.com/gnutls/gnutls/-/issues/1373]
8Signed-off-by: Lei Maohui <leimaohui@fujitsu.com>
9---
10 lib/Makefile.am | 3 +--
11 1 file changed, 1 insertion(+), 2 deletions(-)
12
13diff --git a/lib/Makefile.am b/lib/Makefile.am
14index 0b43ef9..cf263f0 100644
15--- a/lib/Makefile.am
16+++ b/lib/Makefile.am
17@@ -206,8 +206,7 @@ hmac_files = .libs/.gnutls.hmac
18
19 all-local: $(hmac_files)
20
21-.libs/.gnutls.hmac: libgnutls.la fipshmac
22- $(AM_V_GEN) $(builddir)/fipshmac > $@-t && mv $@-t $@
23+.libs/.gnutls.hmac:
24
25 CLEANFILES = $(hmac_files)
26 endif
27--
282.25.1