From: Phil Blundell Date: Sun, 20 Jun 2004 19:51:41 +0000 (+0000) Subject: fix disastrous confusion between $INSTALL and ${INSTALL} X-Git-Tag: Release-2010-05/1~18604 X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=44aa579cefef53b03ae8ddb7dfed489cfd771d16;p=openembedded.git fix disastrous confusion between $INSTALL and ${INSTALL} BKrev: 40d5eacdUt3y8fwcdp_JPbXf5bh_cQ --- 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 }