Closed
Bug 508274
Opened 16 years ago
Closed 16 years ago
comm-central build redness after bug 476208
Categories
(Release Engineering :: General, defect)
Release Engineering
General
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: kairo, Assigned: kairo)
References
Details
Attachments
(1 file)
2.81 KB,
patch
|
bhearsum
:
review+
|
Details | Diff | Splinter Review |
I updated buildbotcustom to a changeset after bug 476208 today, and noticed that all builds went red with messages like this one:
buildid: "python: can't open file 'build/config/printconfigsetting.py': [Errno 2] No such file or directory"
The problem is that the added printconfigsetting.py calls don't take the mozilla subdir(s) in the comm-central configuration into account. I'll test a patch in a moment and attach it if it works well.
![]() |
Assignee | |
Comment 1•16 years ago
|
||
This patch uses the variables we have to make sure we look into the mozilla dirs where needed, for non-comm-central this refers to the same as before, but for SeaMonkey and Thunderbird, we find the right files with this patch as well.
Attachment #392505 -
Flags: review?(bhearsum)
Comment 2•16 years ago
|
||
Comment on attachment 392505 [details] [diff] [review]
Make sure to look into mozilla dirs where needed
Yep, looks good. Let me know when you land it so I can update our master, please.
Attachment #392505 -
Flags: review?(bhearsum) → review+
![]() |
Assignee | |
Comment 3•16 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 16 years ago
Resolution: --- → FIXED
Comment 4•16 years ago
|
||
Did you really mean
+ command=['python', 'build%s/config/printconfigsetting.py' % self.mozillaDir,
and not
+ command=['python', 'build/%s/config/printconfigsetting.py' % self.mozillaDir,
![]() |
Assignee | |
Comment 5•16 years ago
|
||
(In reply to comment #4)
> Did you really mean
> + command=['python', 'build%s/config/printconfigsetting.py' %
> self.mozillaDir,
> and not
> + command=['python', 'build/%s/config/printconfigsetting.py' %
> self.mozillaDir,
Yes. self.mozillaDir == '' for Firefox etc. and self.mozillaDir == '/mozilla' for comm-central builds (SeaMonkey, Thunderbird) in this factory.
Updated•11 years ago
|
Product: mozilla.org → Release Engineering
You need to log in
before you can comment on or make changes to this bug.
Description
•