diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-07-11 17:33:43 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-07-19 10:24:50 +0100 |
commit | bfd279de3275abbfaf3e630383ec244131e0375f (patch) | |
tree | 0d1c90461a890d21444f5d2afb13c52b302427f1 /meta/recipes-qt/qt-apps | |
parent | 99203edda6f0b09d817454d656c100b7a8806b18 (diff) | |
download | poky-bfd279de3275abbfaf3e630383ec244131e0375f.tar.gz |
Convert tab indentation in python functions into four-space
(From OE-Core rev: 604d46c686d06d62d5a07b9c7f4fa170f99307d8)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-qt/qt-apps')
-rw-r--r-- | meta/recipes-qt/qt-apps/qmmp_0.5.2.bb | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/meta/recipes-qt/qt-apps/qmmp_0.5.2.bb b/meta/recipes-qt/qt-apps/qmmp_0.5.2.bb index df18f91c90..ebaced4247 100644 --- a/meta/recipes-qt/qt-apps/qmmp_0.5.2.bb +++ b/meta/recipes-qt/qt-apps/qmmp_0.5.2.bb | |||
@@ -30,23 +30,23 @@ PACKAGES_DYNAMIC = "qmmp-plugin-* " | |||
30 | 30 | ||
31 | 31 | ||
32 | python populate_packages_prepend () { | 32 | python populate_packages_prepend () { |
33 | import os | 33 | import os |
34 | qmmp_libdir = d.expand('${libdir}/qmmp') | 34 | qmmp_libdir = d.expand('${libdir}/qmmp') |
35 | gd = d.expand('${D}/${libdir}/qmmp') | 35 | gd = d.expand('${D}/${libdir}/qmmp') |
36 | plug_dirs = os.listdir(gd) | 36 | plug_dirs = os.listdir(gd) |
37 | 37 | ||
38 | for plug_dir in plug_dirs: | 38 | for plug_dir in plug_dirs: |
39 | g_plug_dir = os.path.join(qmmp_libdir,plug_dir) | 39 | g_plug_dir = os.path.join(qmmp_libdir,plug_dir) |
40 | do_split_packages(d, g_plug_dir, '^lib(.*)\.so$', 'qmmp-plugin-' + plug_dir.lower() + '-%s', 'Qmmp' + plug_dir + 'plugin for %s') | 40 | do_split_packages(d, g_plug_dir, '^lib(.*)\.so$', 'qmmp-plugin-' + plug_dir.lower() + '-%s', 'Qmmp' + plug_dir + 'plugin for %s') |
41 | } | 41 | } |
42 | 42 | ||
43 | FILES_${PN} = "\ | 43 | FILES_${PN} = "\ |
44 | ${bindir}/qmmp \ | 44 | ${bindir}/qmmp \ |
45 | ${libdir}/lib*${SOLIBS} \ | 45 | ${libdir}/lib*${SOLIBS} \ |
46 | ${datadir}/icons/* \ | 46 | ${datadir}/icons/* \ |
47 | ${datadir}/qmmp/images/* \ | 47 | ${datadir}/qmmp/images/* \ |
48 | ${datadir}/applications/* \ | 48 | ${datadir}/applications/* \ |
49 | " | 49 | " |
50 | 50 | ||
51 | FILES_${PN}-dbg += "\ | 51 | FILES_${PN}-dbg += "\ |
52 | ${libdir}/qmmp/*/.debug/* \ | 52 | ${libdir}/qmmp/*/.debug/* \ |