aboutsummaryrefslogtreecommitdiffstats
path: root/classes/distutils-base.bbclass
diff options
context:
space:
mode:
authorKoen Kooi <koen@openembedded.org>2006-11-14 08:50:26 +0000
committerKoen Kooi <koen@openembedded.org>2006-11-14 08:50:26 +0000
commitc9f69cb492ac54bf9ba52e2eb756b84238c10753 (patch)
tree99aa0c119f4c327ffd6735a71e77e99b506c182d /classes/distutils-base.bbclass
parent3f6e1d767c49bb5e1bee437c4272aae86dd9fb35 (diff)
downloadopenembedded-c9f69cb492ac54bf9ba52e2eb756b84238c10753.tar.gz
distutils-base bbclass: exclude debug files from $bindir and $libdir, PYTHON_DIR still contains them, see bug #1581
Diffstat (limited to 'classes/distutils-base.bbclass')
-rw-r--r--classes/distutils-base.bbclass2
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}"