diff options
author | Richard Purdie <richard@openedhand.com> | 2007-11-12 11:06:34 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2007-11-12 11:06:34 +0000 |
commit | 0e09147de182aeb96cff9ff59211b3d907ba83f7 (patch) | |
tree | 004da019bcbfcd9e2325f1855877eca18fc56587 /meta/packages/libxslt | |
parent | 19f1bad37806b5e0b4d971d09226eda51345c9d2 (diff) | |
download | openembedded-core-0e09147de182aeb96cff9ff59211b3d907ba83f7.tar.gz openembedded-core-0e09147de182aeb96cff9ff59211b3d907ba83f7.tar.bz2 openembedded-core-0e09147de182aeb96cff9ff59211b3d907ba83f7.zip |
Remove hardcoded staging layout assumptions
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@3116 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/libxslt')
-rw-r--r-- | meta/packages/libxslt/libxslt_1.1.20.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/packages/libxslt/libxslt_1.1.20.bb b/meta/packages/libxslt/libxslt_1.1.20.bb index fa063142b6..6ec59f14be 100644 --- a/meta/packages/libxslt/libxslt_1.1.20.bb +++ b/meta/packages/libxslt/libxslt_1.1.20.bb @@ -30,8 +30,8 @@ do_stage () { install -m 0644 ${S}/libexslt/$i ${STAGING_INCDIR}/libexslt/$i done - cat xslt-config | sed -e "s,^prefix=.*,prefix=${STAGING_DIR}/${HOST_SYS}," \ - -e "s,^exec_prefix=.*,exec_prefix=${STAGING_DIR}/${HOST_SYS}," \ + cat xslt-config | sed -e "s,^prefix=.*,prefix=${STAGING_DIR_HOST}${layout_prefix}," \ + -e "s,^exec_prefix=.*,exec_prefix=${STAGING_DIR_HOST}${layout_exec_prefix}," \ -e "s,^includedir=.*,includedir=${STAGING_INCDIR}," \ -e "s,^libdir=.*,libdir=${STAGING_LIBDIR}," > ${STAGING_BINDIR_CROSS}/xslt-config chmod a+rx ${STAGING_BINDIR_CROSS}/xslt-config |