diff options
author | Phil Blundell <philb@gnu.org> | 2004-06-20 19:51:37 +0000 |
---|---|---|
committer | Phil Blundell <philb@gnu.org> | 2004-06-20 19:51:37 +0000 |
commit | 9333a7391424707292fa319b6e85d86b337a7a7b (patch) | |
tree | 9cec3389d9b6bf0e2b10cf14669f51a1d528f645 | |
parent | f491b9ee21eaf671927fc31581720bcd91ad9bab (diff) |
reinstate accidentally-deleted do_stage() method
BKrev: 40d5eac9j-rCjxfzBq0JCnk6vQOfCA
-rw-r--r-- | ipkg-utils/ipkg-utils-native_1.6cvs.oe | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ipkg-utils/ipkg-utils-native_1.6cvs.oe b/ipkg-utils/ipkg-utils-native_1.6cvs.oe index 223bba56fe..7f2cf8e769 100644 --- a/ipkg-utils/ipkg-utils-native_1.6cvs.oe +++ b/ipkg-utils/ipkg-utils-native_1.6cvs.oe @@ -2,3 +2,9 @@ include ipkg-utils_${PV}.oe inherit native DEPENDS = "python-native" +do_stage() { + for i in $INSTALL; do + install $i ${STAGING_BINDIR} + done +} + |