diff options
author | Koen Kooi <koen@openembedded.org> | 2008-10-01 10:49:08 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2008-10-01 10:49:08 +0000 |
commit | a81e9cb308ad974e84285d65670c46ebd17dcaa5 (patch) | |
tree | 6fb448b8c88d7ccdd64bb94f77c70adeb2af8afc /packages/perl/perl.inc | |
parent | ff22fa4840fc4a32f1773cb58984e5c4b16181c0 (diff) |
perl: fix references to STAGING_DIR/HOST_SYS, it needs to be STAGING_DIR_HOST for the upcoming MULTIMACH_TARGET_SYS changes
* see http://lists.linuxtogo.org/pipermail/openembedded-devel/2008-July/005819.html
Diffstat (limited to 'packages/perl/perl.inc')
-rw-r--r-- | packages/perl/perl.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/perl/perl.inc b/packages/perl/perl.inc index 9e20ae63e6..00184a9dac 100644 --- a/packages/perl/perl.inc +++ b/packages/perl/perl.inc @@ -36,8 +36,8 @@ do_install() { } do_stage() { - install -d ${STAGING_DIR}/${HOST_SYS}/perl/ - install config.sh ${STAGING_DIR}/${HOST_SYS}/perl/ + install -d ${STAGING_DIR_HOST}/perl/ + install config.sh ${STAGING_DIR_HOST}/perl/ } PACKAGES_DYNAMIC = "perl-module-*" |