diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2012-07-10 17:35:50 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-07-10 20:35:11 +0100 |
commit | 5142a1e95ed7db7e09ef31f645d45bb7e380d1d6 (patch) | |
tree | 85f8726d00fa572f854d216f148220235a5c7552 /meta/recipes-devtools/subversion/subversion_1.7.2.bb | |
parent | 8af21f1511c22d8696df4952c0ef4baf42f390f1 (diff) | |
download | poky-5142a1e95ed7db7e09ef31f645d45bb7e380d1d6.tar.gz |
subversion: do_install failed (parallel issue)
install-neon-lib needs libsvn_delta-1.la which will be regenerated
during libsvn_delta-1.la's installation, if libsvn_delta-1.la is
in regenerating and at the same time install-neon-lib links it, the
error willl happen.
The error message is:
/bin/ld: cannot find -lsvn_delta-1
collect2: error: ld returned 1 exit status
This is a parallel issue, so it doesn't happen often.
Note:
The autoreconf doesn't generate build-outputs.mk, it would be generated
by autogen.sh (use build.conf as the input), but autogen.sh isn't
suitable for cross compiling, so both modified build-outputs.mk and
build.conf.
[YOCTO #2727]
(From OE-Core rev: ce37c45abb4cf43e5009867f695982de2eb33450)
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/subversion/subversion_1.7.2.bb')
-rw-r--r-- | meta/recipes-devtools/subversion/subversion_1.7.2.bb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-devtools/subversion/subversion_1.7.2.bb b/meta/recipes-devtools/subversion/subversion_1.7.2.bb index d4d56d051d..ced1b0cdf3 100644 --- a/meta/recipes-devtools/subversion/subversion_1.7.2.bb +++ b/meta/recipes-devtools/subversion/subversion_1.7.2.bb | |||
@@ -7,10 +7,11 @@ HOMEPAGE = "http://subversion.tigris.org" | |||
7 | 7 | ||
8 | BBCLASSEXTEND = "native" | 8 | BBCLASSEXTEND = "native" |
9 | 9 | ||
10 | PR = "r1" | 10 | PR = "r2" |
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 \ |
14 | file://fix-install-depends.patch \ | ||
14 | " | 15 | " |
15 | SRC_URI[md5sum] = "1e5dfffd27be080672e5a042564368a8" | 16 | SRC_URI[md5sum] = "1e5dfffd27be080672e5a042564368a8" |
16 | SRC_URI[sha256sum] = "7eb3e1ae2b0385e1cc20ca9e1839e0ef0ac98a7455dc52ba4cdf567547bfc517" | 17 | SRC_URI[sha256sum] = "7eb3e1ae2b0385e1cc20ca9e1839e0ef0ac98a7455dc52ba4cdf567547bfc517" |