diff options
| author | Graeme Gregory <dp@xora.org.uk> | 2007-10-17 08:56:33 +0000 |
|---|---|---|
| committer | Graeme Gregory <dp@xora.org.uk> | 2007-10-17 08:56:33 +0000 |
| commit | 47e1a204cdd1c8b446183ed2a3d64ab09051dddf (patch) | |
| tree | 81b40e3cd82915d54701534e9c35569b34d21dd8 /classes/mono.bbclass | |
| parent | ff74c74052c4aa11f68048a9619d6ba4d681ecfb (diff) | |
| parent | 7e0393879513c77065d439d7dfda91aae5fd10a8 (diff) | |
merge of '706e9716e7abeb578efbb0d1222beef485b5212d'
and 'f3dcecae6a28a4d7f2a075677715e68f66d2ac01'
Diffstat (limited to 'classes/mono.bbclass')
| -rw-r--r-- | classes/mono.bbclass | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/classes/mono.bbclass b/classes/mono.bbclass index b7c5439b86..ccb16d9acc 100644 --- a/classes/mono.bbclass +++ b/classes/mono.bbclass @@ -140,6 +140,23 @@ python mono_do_clilibs() { fd.close() } +do_mono_stage() { + if [ "${INHIBIT_MONO_STAGE}" = "1" ] + then + return + fi + + for package in ${PACKAGES}; do + if [ -d "${PKGDEST}/${package}/${libdir}" ]; then + cd "${PKGDEST}/${package}/${libdir}" + for file in `find . -iname "*.dll"`; do + cp --parent -fpPR "${file}" "${STAGING_LIBDIR}/" + done + fi + done +} +addtask mono_stage after do_package before do_populate_staging + def mono_after_parse(d): import bb # Insert mono_do_clilibs into PACKAGEFUNCS |
