diff options
author | Chris Larson <clarson@kergoth.com> | 2004-09-13 19:21:20 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-09-13 19:21:20 +0000 |
commit | 7ea0a8a7b1bde4a2f7c15e064b824462b4633930 (patch) | |
tree | e158364c6a965ff93c8cf373de81ff98b703f159 /ipkg-utils/ipkg-utils-native_1.6cvs.oe | |
parent | 8dae6b172ff5178b87ab5bc5159174514fee72c1 (diff) |
Merge openembedded@openembedded.bkbits.net:packages
into handhelds.org:/home/kergoth/code/oe/packages
2004/09/13 15:21:13-04:00 handhelds.org!kergoth
Non-native packages installing to ${STAGING_BINDIR} is BAD. BAD. BAD.
BKrev: 4145f330GvlJOniJtO51hVM7yT9AYA
Diffstat (limited to 'ipkg-utils/ipkg-utils-native_1.6cvs.oe')
-rw-r--r-- | ipkg-utils/ipkg-utils-native_1.6cvs.oe | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/ipkg-utils/ipkg-utils-native_1.6cvs.oe b/ipkg-utils/ipkg-utils-native_1.6cvs.oe index b8c3f763f6..349593d99c 100644 --- a/ipkg-utils/ipkg-utils-native_1.6cvs.oe +++ b/ipkg-utils/ipkg-utils-native_1.6cvs.oe @@ -1,11 +1,10 @@ include ipkg-utils_${PV}.oe -PR = "r2" +PR = "r3" inherit native DEPENDS = "python-native" do_stage() { for i in ${INSTALL}; do - install $i ${STAGING_BINDIR} + install -m 0755 $i ${STAGING_BINDIR} done } - |