aboutsummaryrefslogtreecommitdiffstats
path: root/ipkg-utils
diff options
context:
space:
mode:
authorPhil Blundell <philb@gnu.org>2004-06-20 19:51:41 +0000
committerPhil Blundell <philb@gnu.org>2004-06-20 19:51:41 +0000
commit44aa579cefef53b03ae8ddb7dfed489cfd771d16 (patch)
tree70f34ad8e3bb280f42a981d57c48888e06248641 /ipkg-utils
parent767f2261dc2246695c6b67888069b55250c240f5 (diff)
downloadopenembedded-44aa579cefef53b03ae8ddb7dfed489cfd771d16.tar.gz
fix disastrous confusion between $INSTALL and ${INSTALL}
BKrev: 40d5eacdUt3y8fwcdp_JPbXf5bh_cQ
Diffstat (limited to 'ipkg-utils')
-rw-r--r--ipkg-utils/ipkg-utils-native_1.6cvs.oe3
1 files changed, 2 insertions, 1 deletions
diff --git a/ipkg-utils/ipkg-utils-native_1.6cvs.oe b/ipkg-utils/ipkg-utils-native_1.6cvs.oe
index 7f2cf8e769..b8c3f763f6 100644
--- a/ipkg-utils/ipkg-utils-native_1.6cvs.oe
+++ b/ipkg-utils/ipkg-utils-native_1.6cvs.oe
@@ -1,9 +1,10 @@
include ipkg-utils_${PV}.oe
+PR = "r2"
inherit native
DEPENDS = "python-native"
do_stage() {
- for i in $INSTALL; do
+ for i in ${INSTALL}; do
install $i ${STAGING_BINDIR}
done
}