From: Chris Larson Date: Thu, 1 Jul 2004 23:19:21 +0000 (+0000) Subject: Warn about usage of OEDIR. X-Git-Tag: 1.0~115 X-Git-Url: http://code.vuplus.com/gitweb/?a=commitdiff_plain;h=ef4f4ede5a51d300d6c445fa1d2a163c99ddc97e;p=vuplus_bitbake Warn about usage of OEDIR. --- diff --git a/bin/oe/parse/ConfHandler.py b/bin/oe/parse/ConfHandler.py index 66bf40d..6db74cc 100644 --- a/bin/oe/parse/ConfHandler.py +++ b/bin/oe/parse/ConfHandler.py @@ -138,6 +138,9 @@ def handle(fn, data = {}, include = 0): if oldfile: oe.data.setVar('FILE', oldfile, data) + + if oe.data.getVar('OEDIR', data, 1): + oe.note("OEDIR is deprecated, please switch to OEPATH.") return data def feeder(lineno, s, fn, data = {}):