diff options
Diffstat (limited to 'meta-xilinx-core/classes/xilinx-deprecated.bbclass')
-rw-r--r-- | meta-xilinx-core/classes/xilinx-deprecated.bbclass | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta-xilinx-core/classes/xilinx-deprecated.bbclass b/meta-xilinx-core/classes/xilinx-deprecated.bbclass index 1aee2fe1..c7509feb 100644 --- a/meta-xilinx-core/classes/xilinx-deprecated.bbclass +++ b/meta-xilinx-core/classes/xilinx-deprecated.bbclass | |||
@@ -14,5 +14,6 @@ python xilinx_deprecated_config_eventhandler () { | |||
14 | if msg_source == "doc": | 14 | if msg_source == "doc": |
15 | continue | 15 | continue |
16 | msg = d.getVarFlag('XILINX_DEPRECATED', msg_source) or "" | 16 | msg = d.getVarFlag('XILINX_DEPRECATED', msg_source) or "" |
17 | bb.warn('%s: %s' % (msg_source, msg)) | 17 | if msg: |
18 | bb.warn('%s: %s' % (msg_source, msg)) | ||
18 | } | 19 | } |