[oe-commits] Denys Dmytriyenko : libxml: actually install xml2-config in STAGING_BINDIR_CROSS

git version control git at git.openembedded.org
Fri Mar 12 06:04:14 UTC 2010


Module: openembedded.git
Branch: shr/unstable
Commit: 33fc60bdc0b6efe8617b3e94dd598640e8a543a7
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=33fc60bdc0b6efe8617b3e94dd598640e8a543a7

Author: Denys Dmytriyenko <denis at denix.org>
Date:   Thu Mar 11 12:49:36 2010 -0500

libxml: actually install xml2-config in STAGING_BINDIR_CROSS

Make sure STAGING_BINDIR_CROSS is a directory and not the target filename
for xml2-config.

Signed-off-by: Denys Dmytriyenko <denis at denix.org>

---

 recipes/libxml/libxml2.inc |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/recipes/libxml/libxml2.inc b/recipes/libxml/libxml2.inc
index 207ef5b..8d49002 100644
--- a/recipes/libxml/libxml2.inc
+++ b/recipes/libxml/libxml2.inc
@@ -7,7 +7,7 @@ DEPENDS_virtclass-native = "python-native"
 SRC_URI = "ftp://xmlsoft.org/libxml2/libxml2-${PV}.tar.gz;name=archive"
 S = "${WORKDIR}/${BPN}-${PV}"
 
-INC_PR = "r5"
+INC_PR = "r6"
 
 BBCLASSEXTEND = "native"
 
@@ -28,7 +28,8 @@ export LDFLAGS += "-ldl"
 do_install_append() {
  	install -m 0644 libxml.m4 ${STAGING_DATADIR}/aclocal/
 	#this is need it by php during its install
-	install -m 0755 xml2-config ${STAGING_BINDIR_CROSS}
+	install -d ${STAGING_BINDIR_CROSS}
+	install -m 0755 xml2-config ${STAGING_BINDIR_CROSS}/
 }
 do_install_append_virtclass-native() {
 	:





More information about the Openembedded-commits mailing list