1
0
mirror of https://git.yoctoproject.org/poky synced 2026-07-27 19:37:10 +00:00

Remove hardcoded staging layout assumptions

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@3116 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Richard Purdie
2007-11-12 11:06:34 +00:00
parent 19f1bad378
commit 0e09147de1
18 changed files with 24 additions and 25 deletions
+2 -2
View File
@@ -18,10 +18,10 @@ do_configure_prepend () {
}
do_stage() {
oe_runmake install prefix=${STAGING_DIR} \
oe_runmake install prefix=${STAGING_DIR_HOST}${layout_prefix} \
bindir=${STAGING_BINDIR} \
includedir=${STAGING_INCDIR} \
libdir=${STAGING_LIBDIR} \
datadir=${STAGING_DATADIR} \
mandir=${STAGING_DATADIR}/man
mandir=${STAGING_DIR_HOST}${layout_mandir}
}
+2 -2
View File
@@ -11,10 +11,10 @@ S = "${WORKDIR}/Xsp"
inherit autotools pkgconfig
do_stage() {
oe_runmake install prefix=${STAGING_DIR} \
oe_runmake install prefix=${STAGING_DIR_HOST}${layout_prefix} \
bindir=${STAGING_BINDIR} \
includedir=${STAGING_INCDIR} \
libdir=${STAGING_LIBDIR} \
datadir=${STAGING_DATADIR} \
mandir=${STAGING_DATADIR}/man
mandir=${STAGING_DIR_HOST}${layout_mandir}
}