summaryrefslogtreecommitdiffstats
path: root/meta/classes/oelint.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes/oelint.bbclass')
-rw-r--r--meta/classes/oelint.bbclass4
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 @@
1addtask lint before do_fetch 1addtask lint before do_fetch
2do_lint[nostamp] = 1 2do_lint[nostamp] = "1"
3python do_lint() { 3python do_lint() {
4 def testVar(var, explain=None): 4 def testVar(var, explain=None):
5 try: 5 try:
@@ -67,7 +67,7 @@ python do_lint() {
67 # Test for valid MAINTAINER 67 # Test for valid MAINTAINER
68 # 68 #
69 s = testVar("MAINTAINER") 69 s = testVar("MAINTAINER")
70 if s=="OpenEmbedded Team <oe@handhelds.org>": 70 if s=="OpenEmbedded Team <openembedded-devel@openembedded.org>":
71 bb.error("explicit MAINTAINER is missing, using default") 71 bb.error("explicit MAINTAINER is missing, using default")
72 elif s and s.find("@") == -1: 72 elif s and s.find("@") == -1:
73 bb.error("You forgot to put an e-mail address into MAINTAINER") 73 bb.error("You forgot to put an e-mail address into MAINTAINER")