aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Pittman <bill.pittman@ni.com>2014-12-18 10:21:00 -0600
committerMartin Jansa <Martin.Jansa@gmail.com>2015-01-05 13:06:47 +0100
commit1bed3fb3eb437f1aa082e27edc51bc7d38462087 (patch)
treedbab423035e8bf1de5401d03474045d3d0ae5f47
parent3827f6a87e78328c34f5d868edc2658540ec338d (diff)
downloadmeta-openembedded-contrib-1bed3fb3eb437f1aa082e27edc51bc7d38462087.tar.gz
packagekit: Change recipe to use native mkdir
For redhat type systems, the recipe tries to use a version of mkdir from sysroots, however mkdir does not exist and the build fails. Ubuntu systems work because the sed command in the recipe specifically replaces the /usr/bin/mkdir path and ubuntu systems use /bin/mkdir. Signed-off-by: Bill Pittman <bill.pittman@ni.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
-rw-r--r--meta-oe/recipes-devtools/packagekit/packagekit_0.5.6.bb1
1 files changed, 0 insertions, 1 deletions
diff --git a/meta-oe/recipes-devtools/packagekit/packagekit_0.5.6.bb b/meta-oe/recipes-devtools/packagekit/packagekit_0.5.6.bb
index 96cc468e38..59b0a43f4a 100644
--- a/meta-oe/recipes-devtools/packagekit/packagekit_0.5.6.bb
+++ b/meta-oe/recipes-devtools/packagekit/packagekit_0.5.6.bb
@@ -41,7 +41,6 @@ EXTRA_OECONF = "--with-security-framework=dummy \
do_configure_append() {
for i in $(find . -name Makefile) ; do
sed -i -e s:${STAGING_DIR_NATIVE}::g \
- -e s:${bindir}/mkdir:${STAGING_BINDIR_NATIVE}/mkdir:g \
-e s:/usr/bin/intltool-merge:${STAGING_BINDIR_NATIVE}/intltool-merge:g \
$i
done