diff options
author | Roy.Li <rongqing.li@windriver.com> | 2012-07-25 16:07:39 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-07-26 14:55:20 +0100 |
commit | fd1a3064e9b90b8791a66dabea372c05340e54ee (patch) | |
tree | 17edd701c68a1782f9ab1b030829d75866ece487 | |
parent | 219583dcbe0d5efb3cb16bc145fd6e010ce663a7 (diff) | |
download | poky-fd1a3064e9b90b8791a66dabea372c05340e54ee.tar.gz |
findutils: fix sort dir on updatedb
[YOCTO #2826]
m4/nullsort.m4 tries to find sort dir, and write it to updatedb,
but nullsort.m4 is checking the host dir. Once the sort dirs on
target and host are different, updatedb will fail due to wrong
sort dir.
Since we always have sort under ${bindir}, so we can assign it
directly.
(From OE-Core rev: 05c3c327370971eaa9d872a88782278126030229)
Signed-off-by: Roy.Li <rongqing.li@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-extended/findutils/findutils_4.4.2.bb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meta/recipes-extended/findutils/findutils_4.4.2.bb b/meta/recipes-extended/findutils/findutils_4.4.2.bb index 127eb4b188..218bf83443 100644 --- a/meta/recipes-extended/findutils/findutils_4.4.2.bb +++ b/meta/recipes-extended/findutils/findutils_4.4.2.bb | |||
@@ -1,6 +1,6 @@ | |||
1 | require findutils.inc | 1 | require findutils.inc |
2 | 2 | ||
3 | PR = "r4" | 3 | PR = "r5" |
4 | 4 | ||
5 | SRC_URI += "file://01-27017.patch \ | 5 | SRC_URI += "file://01-27017.patch \ |
6 | file://02-28824.patch \ | 6 | file://02-28824.patch \ |
@@ -15,4 +15,6 @@ SRC_URI[sha256sum] = "434f32d171cbc0a5e72cfc5372c6fc4cb0e681f8dce566a0de5b6fccd7 | |||
15 | # http://savannah.gnu.org/bugs/?27299 | 15 | # http://savannah.gnu.org/bugs/?27299 |
16 | CACHED_CONFIGUREVARS += "${@base_contains('DISTRO_FEATURES', 'libc-posix-clang-wchar', 'gl_cv_func_wcwidth_works=yes', '', d)}" | 16 | CACHED_CONFIGUREVARS += "${@base_contains('DISTRO_FEATURES', 'libc-posix-clang-wchar', 'gl_cv_func_wcwidth_works=yes', '', d)}" |
17 | 17 | ||
18 | EXTRA_OECONF += "ac_cv_path_SORT=${bindir}/sort" | ||
19 | |||
18 | BBCLASSEXTEND = "native" | 20 | BBCLASSEXTEND = "native" |