[oe-commits] org.oe.dev packages/libxml/libxml2: Create the directory before staging files into it.

freyther commit openembedded-commits at lists.openembedded.org
Wed Oct 24 17:19:35 UTC 2007


packages/libxml/libxml2: Create the directory before staging files into it.

Author: freyther at openembedded.org
Branch: org.openembedded.dev
Revision: 0096bd317f3e43db1d530c41ae39d2682a227b51
ViewMTN: http://monotone.openembedded.org/revision/info/0096bd317f3e43db1d530c41ae39d2682a227b51
Files:
1
packages/libxml/libxml2_2.6.29.bb
Diffs:

#
# mt diff -ra79d90fb0466aeb7b196175fb36831acfe94c694 -r0096bd317f3e43db1d530c41ae39d2682a227b51
#
# 
# 
# patch "packages/libxml/libxml2_2.6.29.bb"
#  from [0801963b752b6faa0b5b6a013a196fa4da72f1e4]
#    to [c2449acb83459ee9a068c8c6044ea5de37d714ce]
# 
============================================================
--- packages/libxml/libxml2_2.6.29.bb	0801963b752b6faa0b5b6a013a196fa4da72f1e4
+++ packages/libxml/libxml2_2.6.29.bb	c2449acb83459ee9a068c8c6044ea5de37d714ce
@@ -14,9 +14,12 @@ do_stage() {
 
 do_stage() {
 	autotools_stage_all
-	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_DATADIR}/aclocal/
+	install -d ${STAGING_BINDIR_CROSS}
+
+ 	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}
 }
 
 python populate_packages_prepend () {






More information about the Openembedded-commits mailing list