diff options
Diffstat (limited to 'meta/classes/oelint.bbclass')
-rw-r--r-- | meta/classes/oelint.bbclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/oelint.bbclass b/meta/classes/oelint.bbclass index baa1c630b4..f2e7540dcf 100644 --- a/meta/classes/oelint.bbclass +++ b/meta/classes/oelint.bbclass @@ -1,5 +1,5 @@ addtask lint before do_fetch -do_lint[nostamp] = 1 +do_lint[nostamp] = "1" python do_lint() { def testVar(var, explain=None): try: @@ -67,7 +67,7 @@ python do_lint() { # Test for valid MAINTAINER # s = testVar("MAINTAINER") - if s=="OpenEmbedded Team <oe@handhelds.org>": + if s=="OpenEmbedded Team <openembedded-devel@openembedded.org>": bb.error("explicit MAINTAINER is missing, using default") elif s and s.find("@") == -1: bb.error("You forgot to put an e-mail address into MAINTAINER") |