diff options
author | Holger Freyther <zecke@selfish.org> | 2007-10-24 14:54:14 +0000 |
---|---|---|
committer | Holger Freyther <zecke@selfish.org> | 2007-10-24 14:54:14 +0000 |
commit | 56a8d656ef0a457b40c77dc877ff51b707722784 (patch) | |
tree | 70b7101ea5ab61da9ef0500e5e68630b9fe13092 /packages/libxml | |
parent | 15923ae1527b4da767f067b8c166625ad28375ad (diff) |
packages/libxml/libxml2: Create the directory before staging files into it.
Diffstat (limited to 'packages/libxml')
-rw-r--r-- | packages/libxml/libxml2_2.6.29.bb | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/packages/libxml/libxml2_2.6.29.bb b/packages/libxml/libxml2_2.6.29.bb index 6904031670..521ba16d9b 100644 --- a/packages/libxml/libxml2_2.6.29.bb +++ b/packages/libxml/libxml2_2.6.29.bb @@ -14,9 +14,12 @@ export LDFLAGS += "-ldl" 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 () { |