diff options
author | Khem Raj <raj.khem@gmail.com> | 2015-04-23 20:35:25 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-04-27 14:59:48 +0100 |
commit | 9b19d6548a345009a6de79a6820c07a72054d961 (patch) | |
tree | dc059be8a2a697e692d9acc346f5ef3b89718b04 | |
parent | 35a2acdc7365aaafae2a11be691633e27d29af4f (diff) | |
download | poky-9b19d6548a345009a6de79a6820c07a72054d961.tar.gz |
subversion: Add -P to CPPFLAGS
see https://gcc.gnu.org/gcc-5/porting_to.html
we need to stop the preprocessor from generating the #line directives
or we run into issues like
| checking for apr_int64_t Python/C API format string...
| configure: error: failed to recognize APR_INT64_T_FMT on this platform
| Configure failed. The contents of all config.log files follows to aid
debugging
| ERROR: oe_runconf failed
Rightly subversion should be fixed but lets leave that to subversion
folks
Change-Id: I02a89798ff949f79967ab0a73adcddaa4218662d
(From OE-Core rev: 7793b1c425077ed6ed11a9bc2a8b1b96612b1c96)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-devtools/subversion/subversion_1.8.11.bb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-devtools/subversion/subversion_1.8.11.bb b/meta/recipes-devtools/subversion/subversion_1.8.11.bb index 8e4cd9df08..d5295d836b 100644 --- a/meta/recipes-devtools/subversion/subversion_1.8.11.bb +++ b/meta/recipes-devtools/subversion/subversion_1.8.11.bb | |||
@@ -7,7 +7,7 @@ HOMEPAGE = "http://subversion.tigris.org" | |||
7 | 7 | ||
8 | BBCLASSEXTEND = "native" | 8 | BBCLASSEXTEND = "native" |
9 | 9 | ||
10 | inherit gettext | 10 | inherit gettext pythonnative |
11 | 11 | ||
12 | SRC_URI = "${APACHE_MIRROR}/${BPN}/${BPN}-${PV}.tar.bz2 \ | 12 | SRC_URI = "${APACHE_MIRROR}/${BPN}/${BPN}-${PV}.tar.bz2 \ |
13 | file://libtool2.patch \ | 13 | file://libtool2.patch \ |
@@ -31,6 +31,7 @@ EXTRA_OECONF = " \ | |||
31 | inherit autotools | 31 | inherit autotools |
32 | 32 | ||
33 | export LDFLAGS += " -L${STAGING_LIBDIR} " | 33 | export LDFLAGS += " -L${STAGING_LIBDIR} " |
34 | CPPFLAGS += "-P" | ||
34 | 35 | ||
35 | acpaths = "-I build/ -I build/ac-macros/" | 36 | acpaths = "-I build/ -I build/ac-macros/" |
36 | 37 | ||