All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/openswan: disable -Werror
@ 2021-06-09 20:14 Fabrice Fontaine
  2021-06-20 16:26 ` Arnout Vandecappelle
  2021-06-23  6:33 ` Peter Korsgaard
  0 siblings, 2 replies; 3+ messages in thread
From: Fabrice Fontaine @ 2021-06-09 20:14 UTC (permalink / raw)
  To: buildroot

Disable -Werror to avoid the following build failure with -DNDEBUG
raised since commit 5a8c50fe05afacc3cbe8e7347e238da9f242fab0

/srv/storage/autobuild/run/instance-2/output-1/build/openswan-3.0.0/programs/rsasigkey/rsasigkey.c:524:6: error: variable 'success' set but not used [-Werror=unused-but-set-variable]
  524 |  int success;
      |      ^~~~~~~

Fixes:
 - http://autobuild.buildroot.org/results/327a0f2b8f0c51bcbb3edb1c3671870d593e93b9

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/openswan/openswan.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/openswan/openswan.mk b/package/openswan/openswan.mk
index 7f083f695d..bb56e4516c 100644
--- a/package/openswan/openswan.mk
+++ b/package/openswan/openswan.mk
@@ -15,7 +15,7 @@ OPENSWAN_MAKE_OPTS = ARCH=$(BR2_ARCH) CC="$(TARGET_CC)" POD2MAN="" XMLTO="" \
 	USERCOMPILE="$(TARGET_CFLAGS) $(if $(BR2_TOOLCHAIN_SUPPORTS_PIE),-fPIE)" \
 	USERLINK="$(TARGET_LDFLAGS) $(if $(BR2_TOOLCHAIN_SUPPORTS_PIE),-fPIE)" \
 	INC_USRLOCAL=/usr USE_KLIPS=false USE_MAST=false USE_NM=false \
-	USE_NOMANINSTALL=true
+	USE_NOMANINSTALL=true WERROR=""
 
 ifeq ($(BR2_PACKAGE_LIBCURL),y)
 OPENSWAN_DEPENDENCIES += libcurl
-- 
2.30.2

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [Buildroot] [PATCH 1/1] package/openswan: disable -Werror
  2021-06-09 20:14 [Buildroot] [PATCH 1/1] package/openswan: disable -Werror Fabrice Fontaine
@ 2021-06-20 16:26 ` Arnout Vandecappelle
  2021-06-23  6:33 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Arnout Vandecappelle @ 2021-06-20 16:26 UTC (permalink / raw)
  To: buildroot



On 09/06/2021 22:14, Fabrice Fontaine wrote:
> Disable -Werror to avoid the following build failure with -DNDEBUG
> raised since commit 5a8c50fe05afacc3cbe8e7347e238da9f242fab0
> 
> /srv/storage/autobuild/run/instance-2/output-1/build/openswan-3.0.0/programs/rsasigkey/rsasigkey.c:524:6: error: variable 'success' set but not used [-Werror=unused-but-set-variable]
>   524 |  int success;
>       |      ^~~~~~~
> 
> Fixes:
>  - http://autobuild.buildroot.org/results/327a0f2b8f0c51bcbb3edb1c3671870d593e93b9
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

 Applied to master, thanks.

 Regards,
 Arnout

> ---
>  package/openswan/openswan.mk | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/package/openswan/openswan.mk b/package/openswan/openswan.mk
> index 7f083f695d..bb56e4516c 100644
> --- a/package/openswan/openswan.mk
> +++ b/package/openswan/openswan.mk
> @@ -15,7 +15,7 @@ OPENSWAN_MAKE_OPTS = ARCH=$(BR2_ARCH) CC="$(TARGET_CC)" POD2MAN="" XMLTO="" \
>  	USERCOMPILE="$(TARGET_CFLAGS) $(if $(BR2_TOOLCHAIN_SUPPORTS_PIE),-fPIE)" \
>  	USERLINK="$(TARGET_LDFLAGS) $(if $(BR2_TOOLCHAIN_SUPPORTS_PIE),-fPIE)" \
>  	INC_USRLOCAL=/usr USE_KLIPS=false USE_MAST=false USE_NM=false \
> -	USE_NOMANINSTALL=true
> +	USE_NOMANINSTALL=true WERROR=""
>  
>  ifeq ($(BR2_PACKAGE_LIBCURL),y)
>  OPENSWAN_DEPENDENCIES += libcurl
> 

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [Buildroot] [PATCH 1/1] package/openswan: disable -Werror
  2021-06-09 20:14 [Buildroot] [PATCH 1/1] package/openswan: disable -Werror Fabrice Fontaine
  2021-06-20 16:26 ` Arnout Vandecappelle
@ 2021-06-23  6:33 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2021-06-23  6:33 UTC (permalink / raw)
  To: buildroot

>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:

 > Disable -Werror to avoid the following build failure with -DNDEBUG
 > raised since commit 5a8c50fe05afacc3cbe8e7347e238da9f242fab0

 > /srv/storage/autobuild/run/instance-2/output-1/build/openswan-3.0.0/programs/rsasigkey/rsasigkey.c:524:6: error: variable 'success' set but not used [-Werror=unused-but-set-variable]
 >   524 |  int success;
 >       |      ^~~~~~~

 > Fixes:
 >  - http://autobuild.buildroot.org/results/327a0f2b8f0c51bcbb3edb1c3671870d593e93b9

 > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

While not strictly needed for 2021.02.x / 2021.05.x as they don't have
the NDEBUG logic, I still backported it to get rid of -Werror.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-06-23  6:33 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-09 20:14 [Buildroot] [PATCH 1/1] package/openswan: disable -Werror Fabrice Fontaine
2021-06-20 16:26 ` Arnout Vandecappelle
2021-06-23  6:33 ` Peter Korsgaard

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.