All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] lxc: revive "drop-werror" patch
@ 2016-09-03 15:24 Jérôme Pouiller
  2016-09-03 18:53 ` Thomas Petazzoni
  0 siblings, 1 reply; 4+ messages in thread
From: Jérôme Pouiller @ 2016-09-03 15:24 UTC (permalink / raw)
  To: buildroot

commit 5050a94ae9f448641e05ce29c931671ffdc62784 dropped patch that
remove '-Werror' from CFLAGS. However, it seems this patch is still
necessary:

  http://autobuild.buildroot.net/results/b1cbca6d0396863654b1d09ccc3163c5f6124ab8
  http://autobuild.buildroot.net/results/fcf2834ad74b95548d25dad2274704ea401f9665
  http://autobuild.buildroot.net/results/048be2fc702c9dba9ca4439ff687d71b30c10551
  http://autobuild.buildroot.net/results/939246c9a4f433dfd0dc414988f5957441b8e9b4

Signed-off-by: J?r?me Pouiller <jezz@sysmic.org>
---
 package/lxc/0001-drop-werror.patch | 16 ++++++++++++++++
 package/lxc/lxc.mk                 |  2 ++
 2 files changed, 18 insertions(+)
 create mode 100644 package/lxc/0001-drop-werror.patch

diff --git a/package/lxc/0001-drop-werror.patch b/package/lxc/0001-drop-werror.patch
new file mode 100644
index 0000000..d2a8673
--- /dev/null
+++ b/package/lxc/0001-drop-werror.patch
@@ -0,0 +1,16 @@
+Don't do -Werror it breaks builds on some scenarios with trivialities.
+
+Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
+
+diff -Nura lxc-lxc-1.0.4/configure.ac lxc-lxc-1.0.4.orig/configure.ac
+--- lxc-lxc-1.0.4.orig/configure.ac	2014-07-04 10:31:19.821029891 -0300
++++ lxc-lxc-1.0.4/configure.ac	2014-06-13 14:07:45.000000000 -0300
+@@ -560,7 +560,7 @@
+ LXC_CHECK_TLS
+ 
+ if test "x$GCC" = "xyes"; then
+-	CFLAGS="$CFLAGS -Wall -Werror"
++	CFLAGS="$CFLAGS -Wall"
+ fi
+ 
+ # Files requiring some variable expansion
diff --git a/package/lxc/lxc.mk b/package/lxc/lxc.mk
index b1cd385..a3e24b4 100644
--- a/package/lxc/lxc.mk
+++ b/package/lxc/lxc.mk
@@ -9,6 +9,8 @@ LXC_SITE = https://linuxcontainers.org/downloads/lxc
 LXC_LICENSE = LGPLv2.1+
 LXC_LICENSE_FILES = COPYING
 LXC_DEPENDENCIES = libcap host-pkgconf
+# we're patching configure.ac
+LXC_AUTORECONF = YES
 LXC_CONF_OPTS = --disable-apparmor --with-distro=buildroot \
 	--disable-lua --disable-python \
 	$(if $(BR2_PACKAGE_BASH),,--disable-bash)
-- 
1.9.1

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

* [Buildroot] [PATCH] lxc: revive "drop-werror" patch
  2016-09-03 15:24 [Buildroot] [PATCH] lxc: revive "drop-werror" patch Jérôme Pouiller
@ 2016-09-03 18:53 ` Thomas Petazzoni
  2016-09-05 11:05   ` Jérôme Pouiller
  0 siblings, 1 reply; 4+ messages in thread
From: Thomas Petazzoni @ 2016-09-03 18:53 UTC (permalink / raw)
  To: buildroot

Hello,

On Sat,  3 Sep 2016 17:24:49 +0200, J?r?me Pouiller wrote:
> commit 5050a94ae9f448641e05ce29c931671ffdc62784 dropped patch that
> remove '-Werror' from CFLAGS. However, it seems this patch is still
> necessary:
> 
>   http://autobuild.buildroot.net/results/b1cbca6d0396863654b1d09ccc3163c5f6124ab8
>   http://autobuild.buildroot.net/results/fcf2834ad74b95548d25dad2274704ea401f9665
>   http://autobuild.buildroot.net/results/048be2fc702c9dba9ca4439ff687d71b30c10551
>   http://autobuild.buildroot.net/results/939246c9a4f433dfd0dc414988f5957441b8e9b4
> 
> Signed-off-by: J?r?me Pouiller <jezz@sysmic.org>
> ---
>  package/lxc/0001-drop-werror.patch | 16 ++++++++++++++++
>  package/lxc/lxc.mk                 |  2 ++
>  2 files changed, 18 insertions(+)
>  create mode 100644 package/lxc/0001-drop-werror.patch

Applied to master, thanks. However, could you submit upstream that can
be accepted? For example, something that adds a --disable-werror
option.

Thanks,

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

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

* [Buildroot] [PATCH] lxc: revive "drop-werror" patch
  2016-09-03 18:53 ` Thomas Petazzoni
@ 2016-09-05 11:05   ` Jérôme Pouiller
  2016-09-05 19:04     ` Peter Korsgaard
  0 siblings, 1 reply; 4+ messages in thread
From: Jérôme Pouiller @ 2016-09-05 11:05 UTC (permalink / raw)
  To: buildroot

Hello Thomas,

On Saturday 03 September 2016 20:53:35 Thomas Petazzoni wrote:
> On Sat,  3 Sep 2016 17:24:49 +0200, J?r?me Pouiller wrote:
> > commit 5050a94ae9f448641e05ce29c931671ffdc62784 dropped patch that
> > remove '-Werror' from CFLAGS. However, it seems this patch is still
> > necessary:
> >   http://autobuild.buildroot.net/results/b1cbca6d0396863654b1d09ccc3
> >   163c5f6124ab8
> >   http://autobuild.buildroot.net/results/fcf2834ad74b95548d25dad227
> >   4704ea401f9665
> >   http://autobuild.buildroot.net/results/048be2fc702c9dba9ca4439ff6
> >   87d71b30c10551
> >   http://autobuild.buildroot.net/results/939246c9a4f433dfd0dc414988
> >   f5957441b8e9b4> 
> > Signed-off-by: J?r?me Pouiller <jezz@sysmic.org>
> > ---
> > 
> >  package/lxc/0001-drop-werror.patch | 16 ++++++++++++++++
> >  package/lxc/lxc.mk                 |  2 ++
> >  2 files changed, 18 insertions(+)
> >  create mode 100644 package/lxc/0001-drop-werror.patch
> 
> Applied to master, thanks. However, could you submit upstream that can
> be accepted? For example, something that adds a --disable-werror
> option.

Unfortunately, it was rejected: https://github.com/lxc/lxc/pull/1168. I 
have never been a good advocate.


-- 
J?r?me Pouiller, Sysmic
Embedded Linux specialist
http://www.sysmic.fr

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

* [Buildroot] [PATCH] lxc: revive "drop-werror" patch
  2016-09-05 11:05   ` Jérôme Pouiller
@ 2016-09-05 19:04     ` Peter Korsgaard
  0 siblings, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2016-09-05 19:04 UTC (permalink / raw)
  To: buildroot

>>>>> "J?r?me" == J?r?me Pouiller <jezz@sysmic.org> writes:

Hi,

 >> Applied to master, thanks. However, could you submit upstream that can
 >> be accepted? For example, something that adds a --disable-werror
 >> option.

 > Unfortunately, it was rejected: https://github.com/lxc/lxc/pull/1168. I 
 > have never been a good advocate.

Seems like we managed to convince them after all, thanks all!

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2016-09-05 19:04 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-09-03 15:24 [Buildroot] [PATCH] lxc: revive "drop-werror" patch Jérôme Pouiller
2016-09-03 18:53 ` Thomas Petazzoni
2016-09-05 11:05   ` Jérôme Pouiller
2016-09-05 19:04     ` 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.