diff options
Diffstat (limited to 'meta/classes/kernel-yocto.bbclass')
-rw-r--r-- | meta/classes/kernel-yocto.bbclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/kernel-yocto.bbclass b/meta/classes/kernel-yocto.bbclass index 496c8a7f68..2f556ca03b 100644 --- a/meta/classes/kernel-yocto.bbclass +++ b/meta/classes/kernel-yocto.bbclass | |||
@@ -138,10 +138,10 @@ do_kernel_metadata() { | |||
138 | for f in ${feat_dirs}; do | 138 | for f in ${feat_dirs}; do |
139 | if [ -d "${WORKDIR}/$f/meta" ]; then | 139 | if [ -d "${WORKDIR}/$f/meta" ]; then |
140 | includes="$includes -I${WORKDIR}/$f/kernel-meta" | 140 | includes="$includes -I${WORKDIR}/$f/kernel-meta" |
141 | elif [ -d "${WORKDIR}/$f" ]; then | ||
142 | includes="$includes -I${WORKDIR}/$f" | ||
143 | elif [ -d "${WORKDIR}/../oe-local-files/$f" ]; then | 141 | elif [ -d "${WORKDIR}/../oe-local-files/$f" ]; then |
144 | includes="$includes -I${WORKDIR}/../oe-local-files/$f" | 142 | includes="$includes -I${WORKDIR}/../oe-local-files/$f" |
143 | elif [ -d "${WORKDIR}/$f" ]; then | ||
144 | includes="$includes -I${WORKDIR}/$f" | ||
145 | fi | 145 | fi |
146 | done | 146 | done |
147 | for s in ${sccs} ${patches}; do | 147 | for s in ${sccs} ${patches}; do |