From c79d685975b966d3406e8623a44e1e5d0f0d9b10 Mon Sep 17 00:00:00 2001 From: =?utf8?q?No=C3=A9=20Rubinstein?= Date: Sat, 2 Jan 2016 12:13:30 +0100 Subject: [PATCH] tpm-tools: fix build failures caused by -Werror MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit This fixes this build failure (and many others): http://autobuild.buildroot.org/results/d56/d56bfc69ef0a478219c959d50fb96d526fc2155e/ The build failure is caused by the build system using -Werror; this is already patched upstream, so this commit just imports the upstream patch. Signed-off-by: Noé Rubinstein Signed-off-by: Peter Korsgaard --- .../0002-configure.in-remove-Werror.patch | 27 +++++++++++++++++++ package/tpm-tools/tpm-tools.mk | 2 +- 2 files changed, 28 insertions(+), 1 deletion(-) create mode 100644 package/tpm-tools/0002-configure.in-remove-Werror.patch diff --git a/package/tpm-tools/0002-configure.in-remove-Werror.patch b/package/tpm-tools/0002-configure.in-remove-Werror.patch new file mode 100644 index 0000000000..c101a9517f --- /dev/null +++ b/package/tpm-tools/0002-configure.in-remove-Werror.patch @@ -0,0 +1,27 @@ +From b060873f444d79f3f5aa388427cb1ede6665834a Mon Sep 17 00:00:00 2001 +From: Kent Yoder +Date: Mon, 5 Nov 2012 14:58:31 -0600 +Subject: [PATCH] configure.in: remove -Werror + +Signed-off-by: Kent Yoder +Signed-off-by: Noe Rubinstein +--- + configure.in | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/configure.in b/configure.in +index da170d0..0f175be 100644 +--- a/configure.in ++++ b/configure.in +@@ -138,7 +138,7 @@ AC_TYPE_SIZE_T + AC_TYPE_SIGNAL + AC_TYPE_UID_T + +-CFLAGS="$CFLAGS -Wall -Werror -Wreturn-type -Wsign-compare" ++CFLAGS="$CFLAGS -Wall -Wreturn-type -Wsign-compare" + + AC_CONFIG_FILES(./Makefile \ + po/Makefile.in \ +-- +2.1.4 + diff --git a/package/tpm-tools/tpm-tools.mk b/package/tpm-tools/tpm-tools.mk index 9dd844d084..d196e89018 100644 --- a/package/tpm-tools/tpm-tools.mk +++ b/package/tpm-tools/tpm-tools.mk @@ -12,7 +12,7 @@ TPM_TOOLS_LICENSE = Common Public License Version 1.0 TPM_TOOLS_LICENSE_FILES = LICENSE TPM_TOOLS_DEPENDENCIES = trousers openssl \ $(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),gettext) -# lib/Makefile.am is patched +# configure.in and lib/Makefile.am is patched TPM_TOOLS_AUTORECONF = YES TPM_TOOLS_CONF_OPTS = --disable-pkcs11-support -- 2.30.2