diff options
author | Phil Blundell <philb@gnu.org> | 2004-06-20 19:51:41 +0000 |
---|---|---|
committer | Phil Blundell <philb@gnu.org> | 2004-06-20 19:51:41 +0000 |
commit | 44aa579cefef53b03ae8ddb7dfed489cfd771d16 (patch) | |
tree | 70f34ad8e3bb280f42a981d57c48888e06248641 /ipkg-utils | |
parent | 767f2261dc2246695c6b67888069b55250c240f5 (diff) |
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.oe | 3 |
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 } |