diff options
author | Koen Kooi <koen@openembedded.org> | 2006-11-14 08:50:26 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2006-11-14 08:50:26 +0000 |
commit | c9f69cb492ac54bf9ba52e2eb756b84238c10753 (patch) | |
tree | 99aa0c119f4c327ffd6735a71e77e99b506c182d | |
parent | 3f6e1d767c49bb5e1bee437c4272aae86dd9fb35 (diff) |
distutils-base bbclass: exclude debug files from $bindir and $libdir, PYTHON_DIR still contains them, see bug #1581
-rw-r--r-- | classes/distutils-base.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/distutils-base.bbclass b/classes/distutils-base.bbclass index 68d7112166..15e945d518 100644 --- a/classes/distutils-base.bbclass +++ b/classes/distutils-base.bbclass @@ -10,5 +10,5 @@ def python_dir(d): raise "No Python in STAGING_INCDIR. Forgot to build python-native ?" PYTHON_DIR = "${@python_dir(d)}" -FILES_${PN} = "${bindir} ${libdir} ${libdir}/${PYTHON_DIR}" +FILES_${PN} = "${bindir}/* ${libdir}/* ${libdir}/${PYTHON_DIR}" |