diff options
author | Khem Raj <raj.khem@gmail.com> | 2015-04-10 18:20:35 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-04-13 22:33:22 +0100 |
commit | a543a574b5c68129af1bb775e29ad4f26ca139e3 (patch) | |
tree | 5c46e8098c41cb160aa8b80d7de1f7ec7750e9f8 /meta/recipes-connectivity/ppp | |
parent | 76e8f214e655b8067123740ad317c25eb559b112 (diff) | |
download | poky-a543a574b5c68129af1bb775e29ad4f26ca139e3.tar.gz |
ppp: Add extra include dirs
Just run configure, the configure script is not really
a autoconf generated script so just run it
Include path is needed to be there since
the headers from it are used during build in subcomponents
Change-Id: Ib1f24fd18bc8564e3c74ab834b7cf0fdf955d0e1
(From OE-Core rev: c64c9f7ffc88018404afdde373dfd7ef2bdf7ae8)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity/ppp')
-rw-r--r-- | meta/recipes-connectivity/ppp/ppp_2.4.7.bb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/meta/recipes-connectivity/ppp/ppp_2.4.7.bb b/meta/recipes-connectivity/ppp/ppp_2.4.7.bb index 92ca0c92c6..4219d45591 100644 --- a/meta/recipes-connectivity/ppp/ppp_2.4.7.bb +++ b/meta/recipes-connectivity/ppp/ppp_2.4.7.bb | |||
@@ -43,7 +43,11 @@ EXTRA_OECONF = "--disable-strip" | |||
43 | # Package Makefile computes CFLAGS, referencing COPTS. | 43 | # Package Makefile computes CFLAGS, referencing COPTS. |
44 | # Typically hard-coded to '-O2 -g' in the Makefile's. | 44 | # Typically hard-coded to '-O2 -g' in the Makefile's. |
45 | # | 45 | # |
46 | EXTRA_OEMAKE += ' COPTS="${CFLAGS}"' | 46 | EXTRA_OEMAKE += ' COPTS="${CFLAGS} -I${S}/include"' |
47 | |||
48 | do_configure () { | ||
49 | oe_runconf | ||
50 | } | ||
47 | 51 | ||
48 | do_install_append () { | 52 | do_install_append () { |
49 | make install-etcppp ETCDIR=${D}/${sysconfdir}/ppp | 53 | make install-etcppp ETCDIR=${D}/${sysconfdir}/ppp |