diff options
author | Marcin Juszkiewicz <hrw@openedhand.com> | 2007-10-26 12:53:16 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openedhand.com> | 2007-10-26 12:53:16 +0000 |
commit | 4b780366b037003bc3c8a7a2b8fe32b0c63572e0 (patch) | |
tree | 45ba0674590cd46f691cc91270a95ed34fef5772 /meta/packages/libxml/libxml2_2.6.29.bb | |
parent | 58df8e8af681ca604eda977c3ce10921e9613af1 (diff) | |
download | poky-4b780366b037003bc3c8a7a2b8fe32b0c63572e0.tar.gz |
libxml2: create staging directories before installing into them (from OE)
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@3006 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/libxml/libxml2_2.6.29.bb')
-rw-r--r-- | meta/packages/libxml/libxml2_2.6.29.bb | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/meta/packages/libxml/libxml2_2.6.29.bb b/meta/packages/libxml/libxml2_2.6.29.bb index 6904031670..521ba16d9b 100644 --- a/meta/packages/libxml/libxml2_2.6.29.bb +++ b/meta/packages/libxml/libxml2_2.6.29.bb | |||
@@ -14,9 +14,12 @@ export LDFLAGS += "-ldl" | |||
14 | 14 | ||
15 | do_stage() { | 15 | do_stage() { |
16 | autotools_stage_all | 16 | autotools_stage_all |
17 | install -m 0644 libxml.m4 ${STAGING_DATADIR}/aclocal/ | 17 | install -d ${STAGING_DATADIR}/aclocal/ |
18 | #this is need it by php during its install | 18 | install -d ${STAGING_BINDIR_CROSS} |
19 | install -m 0755 xml2-config ${STAGING_BINDIR_CROSS} | 19 | |
20 | install -m 0644 libxml.m4 ${STAGING_DATADIR}/aclocal/ | ||
21 | #this is need it by php during its install | ||
22 | install -m 0755 xml2-config ${STAGING_BINDIR_CROSS} | ||
20 | } | 23 | } |
21 | 24 | ||
22 | python populate_packages_prepend () { | 25 | python populate_packages_prepend () { |