summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/cooker.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/cooker.py')
-rw-r--r--bitbake/lib/bb/cooker.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py
index 5f88f1ff59..6b58f91c6b 100644
--- a/bitbake/lib/bb/cooker.py
+++ b/bitbake/lib/bb/cooker.py
@@ -696,8 +696,8 @@ class BBCooker:
696 # Generate a list of parsed configuration files by searching the files 696 # Generate a list of parsed configuration files by searching the files
697 # listed in the __depends and __base_depends variables with a .conf suffix. 697 # listed in the __depends and __base_depends variables with a .conf suffix.
698 conffiles = [] 698 conffiles = []
699 dep_files = self.configuration.data.getVar('__depends') or set() 699 dep_files = self.configuration.data.getVar('__base_depends') or []
700 dep_files.union(self.configuration.data.getVar('__base_depends') or set()) 700 dep_files = dep_files + (self.configuration.data.getVar('__depends') or [])
701 701
702 for f in dep_files: 702 for f in dep_files:
703 if f[0].endswith(".conf"): 703 if f[0].endswith(".conf"):