bitbake.conf: don't filter out nonexisting paths from FILESPATH
authorChris Larson <chris_larson@mentor.com>
Sat, 22 May 2010 00:11:48 +0000 (17:11 -0700)
committerChris Larson <chris_larson@mentor.com>
Thu, 10 Jun 2010 18:35:01 +0000 (11:35 -0700)
It's unnecessary, and can cause problems with amend.bbclass.

Signed-off-by: Chris Larson <chris_larson@mentor.com>
conf/bitbake.conf

index ee93cd4..5dc6772 100644 (file)
@@ -272,7 +272,7 @@ export MANIFEST = "${FILESDIR}/manifest"
 FILE_DIRNAME = "${@os.path.dirname(bb.data.getVar('FILE', d))}"
 FILESPATHBASE = "${FILE_DIRNAME}"
 FILESPATHPKG = "${PF}:${P}:${PN}:${BP}:${BPN}:files:."
-FILESPATH = "${@':'.join([os.path.normpath(os.path.join(fp, p, o)) for fp in d.getVar('FILESPATHBASE', 1).split(':') for p in d.getVar('FILESPATHPKG', 1).split(':') for o in (d.getVar('OVERRIDES', 1) + ':').split(':') if os.path.exists(os.path.join(fp, p, o))])}"
+FILESPATH = "${@':'.join([os.path.normpath(os.path.join(fp, p, o)) for fp in d.getVar('FILESPATHBASE', 1).split(':') for p in d.getVar('FILESPATHPKG', 1).split(':') for o in (d.getVar('OVERRIDES', 1) + ':').split(':')])}"
 FILESDIR = "${@bb.which(d.getVar('FILESPATH', 1), '.')}"
 
 ##################################################################