diff options
author | Xin Ouyang <Xin.Ouyang@windriver.com> | 2013-03-29 18:42:28 +0800 |
---|---|---|
committer | Xin Ouyang <Xin.Ouyang@windriver.com> | 2013-04-01 11:04:13 +0800 |
commit | c184646a076f4ffa9d8797d7ab08eb493927337c (patch) | |
tree | 335deffa963dd3a6c7e2db15783262e0aee1a40e | |
parent | 11fd52d5a8d50db99e1cc98f191ea9a89c2de318 (diff) | |
download | meta-selinux-c184646a076f4ffa9d8797d7ab08eb493927337c.tar.gz |
findutils: Fix case where ${B} != ${S}
oe-core 9e64079063fc4748b48eee0e2592caf8ba9de10e has split ${B} of
findutils into a different path from ${S}, this would cause build
failures.
.../findutils/4.4.2-r6.5/temp/run.do_configure.25396:
line 87: ./import-gnulib.sh: No such file or directory
Signed-off-by: Xin Ouyang <Xin.Ouyang@windriver.com>
-rw-r--r-- | recipes-extended/findutils/findutils_4.4.2.bbappend | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-extended/findutils/findutils_4.4.2.bbappend b/recipes-extended/findutils/findutils_4.4.2.bbappend index fa1387c..3245e5c 100644 --- a/recipes-extended/findutils/findutils_4.4.2.bbappend +++ b/recipes-extended/findutils/findutils_4.4.2.bbappend | |||
@@ -9,6 +9,6 @@ SRC_URI += "file://findutils-with-selinux-gnulib.patch" | |||
9 | inherit with-selinux | 9 | inherit with-selinux |
10 | 10 | ||
11 | do_configure_prepend() { | 11 | do_configure_prepend() { |
12 | ./import-gnulib.sh -d ${WORKDIR}/git | 12 | cd ${S} && ./import-gnulib.sh -d ${WORKDIR}/git && cd ${B} |
13 | } | 13 | } |
14 | 14 | ||