Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] package/openvmtools: do not force -I/usr/include in CPPFLAGS
@ 2014-09-21 11:01 Yann E. MORIN
  2014-09-21 12:40 ` Károly Kasza
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Yann E. MORIN @ 2014-09-21 11:01 UTC (permalink / raw)
  To: buildroot

Fixes:
    http://autobuild.buildroot.net/results/447/4473d8a99ffec1fde491d172520e86ae1e69fae7/

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
---
 .../openvmtools-04-dont-force-cppflags.patch       | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)
 create mode 100644 package/openvmtools/openvmtools-04-dont-force-cppflags.patch

diff --git a/package/openvmtools/openvmtools-04-dont-force-cppflags.patch b/package/openvmtools/openvmtools-04-dont-force-cppflags.patch
new file mode 100644
index 0000000..8f904b1
--- /dev/null
+++ b/package/openvmtools/openvmtools-04-dont-force-cppflags.patch
@@ -0,0 +1,22 @@
+m4: do not force -I/usr/include in CPPFLAGS
+
+This is so horribly broken for cross-compilation. :-(
+
+Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
+
+diff -durN openvmtools-9.4.6-1770165.orig/m4/vmtools.m4 openvmtools-9.4.6-1770165/m4/vmtools.m4
+--- openvmtools-9.4.6-1770165.orig/m4/vmtools.m4	2014-07-02 00:21:14.000000000 +0200
++++ openvmtools-9.4.6-1770165/m4/vmtools.m4	2014-09-21 12:39:15.901659888 +0200
+@@ -281,10 +281,10 @@
+       if test "$os" = freebsd; then
+          CUSTOM_$1_CPPFLAGS="-I/usr/local/include"
+       else
+-         CUSTOM_$1_CPPFLAGS="-I/usr/include"
++         CUSTOM_$1_CPPFLAGS=" "
+       fi
+       if test -n "$2"; then
+-         CUSTOM_$1_CPPFLAGS="${CUSTOM_$1_CPPFLAGS}/$2"
++         : CUSTOM_$1_CPPFLAGS="${CUSTOM_$1_CPPFLAGS}/$2"
+       fi
+    fi
+ ])
-- 
1.9.1

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

* [Buildroot] [PATCH] package/openvmtools: do not force -I/usr/include in CPPFLAGS
  2014-09-21 11:01 [Buildroot] [PATCH] package/openvmtools: do not force -I/usr/include in CPPFLAGS Yann E. MORIN
@ 2014-09-21 12:40 ` Károly Kasza
  2014-09-21 12:48   ` Yann E. MORIN
  2014-09-21 12:53 ` Yann E. MORIN
  2014-09-21 17:37 ` Thomas Petazzoni
  2 siblings, 1 reply; 5+ messages in thread
From: Károly Kasza @ 2014-09-21 12:40 UTC (permalink / raw)
  To: buildroot

Hi Yann,

I was just looking for the same problem at
http://autobuild.buildroot.net/results/2e0/2e0c15fded8b1043e916c34a795da0a06c8534fb/build-end.log
. Thanks for the fix - the patch number should become 05 I think if applied
committed after http://patchwork.ozlabs.org/patch/389396/ .

BR,
Karoly

On Sun, Sep 21, 2014 at 1:01 PM, Yann E. MORIN <yann.morin.1998@free.fr>
wrote:

> Fixes:
>
> http://autobuild.buildroot.net/results/447/4473d8a99ffec1fde491d172520e86ae1e69fae7/
>
> Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
> ---
>  .../openvmtools-04-dont-force-cppflags.patch       | 22
> ++++++++++++++++++++++
>  1 file changed, 22 insertions(+)
>  create mode 100644
> package/openvmtools/openvmtools-04-dont-force-cppflags.patch
>
> diff --git a/package/openvmtools/openvmtools-04-dont-force-cppflags.patch
> b/package/openvmtools/openvmtools-04-dont-force-cppflags.patch
> new file mode 100644
> index 0000000..8f904b1
> --- /dev/null
> +++ b/package/openvmtools/openvmtools-04-dont-force-cppflags.patch
> @@ -0,0 +1,22 @@
> +m4: do not force -I/usr/include in CPPFLAGS
> +
> +This is so horribly broken for cross-compilation. :-(
> +
> +Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
> +
> +diff -durN openvmtools-9.4.6-1770165.orig/m4/vmtools.m4
> openvmtools-9.4.6-1770165/m4/vmtools.m4
> +--- openvmtools-9.4.6-1770165.orig/m4/vmtools.m4       2014-07-02
> 00:21:14.000000000 +0200
> ++++ openvmtools-9.4.6-1770165/m4/vmtools.m4    2014-09-21
> 12:39:15.901659888 +0200
> +@@ -281,10 +281,10 @@
> +       if test "$os" = freebsd; then
> +          CUSTOM_$1_CPPFLAGS="-I/usr/local/include"
> +       else
> +-         CUSTOM_$1_CPPFLAGS="-I/usr/include"
> ++         CUSTOM_$1_CPPFLAGS=" "
> +       fi
> +       if test -n "$2"; then
> +-         CUSTOM_$1_CPPFLAGS="${CUSTOM_$1_CPPFLAGS}/$2"
> ++         : CUSTOM_$1_CPPFLAGS="${CUSTOM_$1_CPPFLAGS}/$2"
> +       fi
> +    fi
> + ])
> --
> 1.9.1
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
>



-- 

?dv,
KK
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20140921/6bbd3f9a/attachment.html>

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

* [Buildroot] [PATCH] package/openvmtools: do not force -I/usr/include in CPPFLAGS
  2014-09-21 12:40 ` Károly Kasza
@ 2014-09-21 12:48   ` Yann E. MORIN
  0 siblings, 0 replies; 5+ messages in thread
From: Yann E. MORIN @ 2014-09-21 12:48 UTC (permalink / raw)
  To: buildroot

K?roly, All,

On 2014-09-21 14:40 +0200, K?roly Kasza spake thusly:
> I was just looking for the same problem at
> http://autobuild.buildroot.net/results/2e0/2e0c15fded8b1043e916c34a795da0a06c8534fb/build-end.log

Yup, same problem. I just looked at the frontpage of the autobuilders,
so missed that one.

> . Thanks for the fix - the patch number should become 05 I think if applied
> committed after http://patchwork.ozlabs.org/patch/389396/ .

Yes.

Whoever commits this fix may rename whichever he applies last. ;-)

Regards,
Yann E. MORIN.

> BR,
> Karoly
> 
> On Sun, Sep 21, 2014 at 1:01 PM, Yann E. MORIN <yann.morin.1998@free.fr>
> wrote:
> 
> > Fixes:
> >
> > http://autobuild.buildroot.net/results/447/4473d8a99ffec1fde491d172520e86ae1e69fae7/
> >
> > Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
> > ---
> >  .../openvmtools-04-dont-force-cppflags.patch       | 22
> > ++++++++++++++++++++++
> >  1 file changed, 22 insertions(+)
> >  create mode 100644
> > package/openvmtools/openvmtools-04-dont-force-cppflags.patch
> >
> > diff --git a/package/openvmtools/openvmtools-04-dont-force-cppflags.patch
> > b/package/openvmtools/openvmtools-04-dont-force-cppflags.patch
> > new file mode 100644
> > index 0000000..8f904b1
> > --- /dev/null
> > +++ b/package/openvmtools/openvmtools-04-dont-force-cppflags.patch
> > @@ -0,0 +1,22 @@
> > +m4: do not force -I/usr/include in CPPFLAGS
> > +
> > +This is so horribly broken for cross-compilation. :-(
> > +
> > +Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
> > +
> > +diff -durN openvmtools-9.4.6-1770165.orig/m4/vmtools.m4
> > openvmtools-9.4.6-1770165/m4/vmtools.m4
> > +--- openvmtools-9.4.6-1770165.orig/m4/vmtools.m4       2014-07-02
> > 00:21:14.000000000 +0200
> > ++++ openvmtools-9.4.6-1770165/m4/vmtools.m4    2014-09-21
> > 12:39:15.901659888 +0200
> > +@@ -281,10 +281,10 @@
> > +       if test "$os" = freebsd; then
> > +          CUSTOM_$1_CPPFLAGS="-I/usr/local/include"
> > +       else
> > +-         CUSTOM_$1_CPPFLAGS="-I/usr/include"
> > ++         CUSTOM_$1_CPPFLAGS=" "
> > +       fi
> > +       if test -n "$2"; then
> > +-         CUSTOM_$1_CPPFLAGS="${CUSTOM_$1_CPPFLAGS}/$2"
> > ++         : CUSTOM_$1_CPPFLAGS="${CUSTOM_$1_CPPFLAGS}/$2"
> > +       fi
> > +    fi
> > + ])
> > --
> > 1.9.1
> >
> > _______________________________________________
> > buildroot mailing list
> > buildroot at busybox.net
> > http://lists.busybox.net/mailman/listinfo/buildroot
> >
> 
> 
> 
> -- 
> 
> ?dv,
> KK

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

* [Buildroot] [PATCH] package/openvmtools: do not force -I/usr/include in CPPFLAGS
  2014-09-21 11:01 [Buildroot] [PATCH] package/openvmtools: do not force -I/usr/include in CPPFLAGS Yann E. MORIN
  2014-09-21 12:40 ` Károly Kasza
@ 2014-09-21 12:53 ` Yann E. MORIN
  2014-09-21 17:37 ` Thomas Petazzoni
  2 siblings, 0 replies; 5+ messages in thread
From: Yann E. MORIN @ 2014-09-21 12:53 UTC (permalink / raw)
  To: buildroot

All,

On 2014-09-21 13:01 +0200, Yann E. MORIN spake thusly:
> Fixes:
>     http://autobuild.buildroot.net/results/447/4473d8a99ffec1fde491d172520e86ae1e69fae7/
> 
> Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
> ---
>  .../openvmtools-04-dont-force-cppflags.patch       | 22 ++++++++++++++++++++++
>  1 file changed, 22 insertions(+)
>  create mode 100644 package/openvmtools/openvmtools-04-dont-force-cppflags.patch
> 
> diff --git a/package/openvmtools/openvmtools-04-dont-force-cppflags.patch b/package/openvmtools/openvmtools-04-dont-force-cppflags.patch
> new file mode 100644
> index 0000000..8f904b1
> --- /dev/null
> +++ b/package/openvmtools/openvmtools-04-dont-force-cppflags.patch
> @@ -0,0 +1,22 @@
> +m4: do not force -I/usr/include in CPPFLAGS
> +
> +This is so horribly broken for cross-compilation. :-(
> +
> +Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
> +
> +diff -durN openvmtools-9.4.6-1770165.orig/m4/vmtools.m4 openvmtools-9.4.6-1770165/m4/vmtools.m4
> +--- openvmtools-9.4.6-1770165.orig/m4/vmtools.m4	2014-07-02 00:21:14.000000000 +0200
> ++++ openvmtools-9.4.6-1770165/m4/vmtools.m4	2014-09-21 12:39:15.901659888 +0200
> +@@ -281,10 +281,10 @@
> +       if test "$os" = freebsd; then
> +          CUSTOM_$1_CPPFLAGS="-I/usr/local/include"
> +       else
> +-         CUSTOM_$1_CPPFLAGS="-I/usr/include"
> ++         CUSTOM_$1_CPPFLAGS=" "

I suddenly realise it is not obvious why I left a space in there.

That's on purpose, otherwise ./configure gets awfully confused, and
does not even try to find PAM headers and simply bails out before even
doing anything to detect PAM.

I can re-spin with a better commit log (and/or a comment in the patch)
if needed. Or it can be added by the committer. ;-)

Regards,
Yann E. MORIN.

> +       fi
> +       if test -n "$2"; then
> +-         CUSTOM_$1_CPPFLAGS="${CUSTOM_$1_CPPFLAGS}/$2"
> ++         : CUSTOM_$1_CPPFLAGS="${CUSTOM_$1_CPPFLAGS}/$2"
> +       fi
> +    fi
> + ])
> -- 
> 1.9.1
> 

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

* [Buildroot] [PATCH] package/openvmtools: do not force -I/usr/include in CPPFLAGS
  2014-09-21 11:01 [Buildroot] [PATCH] package/openvmtools: do not force -I/usr/include in CPPFLAGS Yann E. MORIN
  2014-09-21 12:40 ` Károly Kasza
  2014-09-21 12:53 ` Yann E. MORIN
@ 2014-09-21 17:37 ` Thomas Petazzoni
  2 siblings, 0 replies; 5+ messages in thread
From: Thomas Petazzoni @ 2014-09-21 17:37 UTC (permalink / raw)
  To: buildroot

Dear Yann E. MORIN,

On Sun, 21 Sep 2014 13:01:15 +0200, Yann E. MORIN wrote:
> Fixes:
>     http://autobuild.buildroot.net/results/447/4473d8a99ffec1fde491d172520e86ae1e69fae7/
> 
> Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
> ---
>  .../openvmtools-04-dont-force-cppflags.patch       | 22 ++++++++++++++++++++++
>  1 file changed, 22 insertions(+)
>  create mode 100644 package/openvmtools/openvmtools-04-dont-force-cppflags.patch

Applied, thanks.

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

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

end of thread, other threads:[~2014-09-21 17:37 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-09-21 11:01 [Buildroot] [PATCH] package/openvmtools: do not force -I/usr/include in CPPFLAGS Yann E. MORIN
2014-09-21 12:40 ` Károly Kasza
2014-09-21 12:48   ` Yann E. MORIN
2014-09-21 12:53 ` Yann E. MORIN
2014-09-21 17:37 ` Thomas Petazzoni

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox