diff options
author | Chunrong Guo <B40290-KZfg59tc24xl57MIdRCFDg@public.gmane.org> | 2014-03-28 08:47:05 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-04-04 11:53:52 +0100 |
commit | 7c0ca0b345e2605f25097c99ddcc5a4f253a91c4 (patch) | |
tree | a7a14696edb7841bba6fc85b5e823cef4bb91264 /meta/recipes-core | |
parent | 90c2817750b58f8111169afdb185117a783a34ed (diff) | |
download | poky-7c0ca0b345e2605f25097c99ddcc5a4f253a91c4.tar.gz |
coreutils: fix search paths for libstdbuf.so
*fix the following error:
|stdbuf: failed to find 'libstdbuf.so'
*PKGLIBEXECDIR is the search paths for libstdbuf.so
|PKGLIBEXECDIR='$(pkglibexecdir)'
|pkglibexecdir='${libexecdir}/${PACKAGE}'
(From OE-Core rev: a0745234e78d9161d407f2157dc494fed4487d42)
Signed-off-by: Chunrong Guo <B40290-KZfg59tc24xl57MIdRCFDg@public.gmane.org>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core')
-rw-r--r-- | meta/recipes-core/coreutils/coreutils_8.22.bb | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/meta/recipes-core/coreutils/coreutils_8.22.bb b/meta/recipes-core/coreutils/coreutils_8.22.bb index a26aa02e2e..ba3a0a0228 100644 --- a/meta/recipes-core/coreutils/coreutils_8.22.bb +++ b/meta/recipes-core/coreutils/coreutils_8.22.bb | |||
@@ -22,7 +22,7 @@ SRC_URI[md5sum] = "8fb0ae2267aa6e728958adc38f8163a2" | |||
22 | SRC_URI[sha256sum] = "5b3e94998152c017e6c75d56b9b994188eb71bf46d4038a642cb9141f6ff1212" | 22 | SRC_URI[sha256sum] = "5b3e94998152c017e6c75d56b9b994188eb71bf46d4038a642cb9141f6ff1212" |
23 | 23 | ||
24 | EXTRA_OECONF_class-native = "--without-gmp" | 24 | EXTRA_OECONF_class-native = "--without-gmp" |
25 | EXTRA_OECONF_class-target = "--enable-install-program=arch" | 25 | EXTRA_OECONF_class-target = "--enable-install-program=arch --libexecdir=${libdir}" |
26 | 26 | ||
27 | # acl is not a default feature | 27 | # acl is not a default feature |
28 | # | 28 | # |
@@ -71,8 +71,6 @@ do_install_append() { | |||
71 | # in update-alternatives to fail, therefore use lbracket - the name used | 71 | # in update-alternatives to fail, therefore use lbracket - the name used |
72 | # for the actual source file. | 72 | # for the actual source file. |
73 | mv ${D}${bindir}/[ ${D}${bindir}/lbracket.${BPN} | 73 | mv ${D}${bindir}/[ ${D}${bindir}/lbracket.${BPN} |
74 | install -d ${D}${libdir}/coreutils | ||
75 | mv ${D}${libexecdir}/coreutils/libstdbuf.so ${D}${libdir}/coreutils | ||
76 | } | 74 | } |
77 | 75 | ||
78 | inherit update-alternatives | 76 | inherit update-alternatives |