diff options
author | Richard Purdie <richard@openedhand.com> | 2006-11-20 15:19:39 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2006-11-20 15:19:39 +0000 |
commit | e09dab061470154bb14d172f79c5589d232b3c12 (patch) | |
tree | 0657681c4a60c3e7903591a0641a18d0ea6b7ac0 /meta/classes/oelint.bbclass | |
parent | 4015d48fcfec627821e9dd420b6c37fa1c60369e (diff) | |
download | poky-e09dab061470154bb14d172f79c5589d232b3c12.tar.gz |
classes: Sync with OE - mainly quoting fixes or other minor updates
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@885 311d38ba-8fff-0310-9ca6-ca027cbcb966
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 @@ | |||
1 | addtask lint before do_fetch | 1 | addtask lint before do_fetch |
2 | do_lint[nostamp] = 1 | 2 | do_lint[nostamp] = "1" |
3 | python do_lint() { | 3 | python 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") |