Closed Bug 905707 Opened 11 years ago Closed 11 years ago

mach environment fails when printing mozconfig args

Categories

(Firefox Build System :: General, defect)

x86
macOS
defect
Not set
normal

Tracking

(Not tracked)

RESOLVED FIXED
mozilla26

People

(Reporter: chmanchester, Assigned: chmanchester)

Details

Attachments

(1 file, 1 obsolete file)

localhost:m-c mozilla$ mach environment
platform:
	Darwin-12.4.0-x86_64-i386-64bit
python version:
	2.7.2 (default, Oct 11 2012, 20:14:37)
[GCC 4.2.1 Compatible Apple Clang 4.0 (tags/Apple/clang-418.0.60)]
python prefix:
	/System/Library/Frameworks/Python.framework/Versions/2.7
mach cwd:
	/Users/mozilla/m-c
os cwd:
	/Users/mozilla/m-c
mach directory:
	/Users/mozilla/m-c
state directory:
	/Users/mozilla/.mozbuild
mozconfig path:
	None
object directory:
	/Users/mozilla/m-c/obj-x86_64-apple-darwin12.4.0
mozconfig objdir:
	None
mozconfig configure args:
Error running mach:

    ['environment']

The error occurred in the implementation of the invoked mach command.

This should never occur and is likely a bug in the implementation of that
command. Consider filing a bug for this issue.

If filing a bug, please include the full output of mach, including this error
message.

The details of the failure are as follows:

TypeError: 'NoneType' object is not iterable

  File "/Users/mozilla/m-c/python/mozbuild/mozbuild/mach_commands.py", line 798, in environment
    for arg in mozconfig['configure_args']:
Assignee: nobody → cmanchester
Comment on attachment 790867 [details] [diff] [review]
Don't try to print mozconfig attrs if not present;

Review of attachment 790867 [details] [diff] [review]:
-----------------------------------------------------------------

Will get r+ with comments addressed.

::: python/mozbuild/mozbuild/mach_commands.py
@@ +792,5 @@
>  
>          print('object directory:\n\t%s' % mb.topobjdir)
>  
>          if mozconfig:
> +            if mozconfig.get('configure_args'):

configure_args will always be present, so you don't need .get().

Also, I kind of think it's helpful to print the label but no value. Keep in mind that the output of this command will be used to help debug a problem. I think it's better for people to be like "it says I don't have configure args defined" rather than rely on people thinking "should this list configure args? why isn't it listing configure args?"

@@ +800,2 @@
>  
> +            if mozconfig.get('make_extra'):

Ditto.

@@ +805,2 @@
>  
> +            if mozconfig.get('make_flags'):

Ditto.
Attachment #790867 - Flags: review?(gps) → feedback+
Attachment #790867 - Attachment is obsolete: true
Comment on attachment 790970 [details] [diff] [review]
Don't try to print mozconfig attrs if not present;

Review of attachment 790970 [details] [diff] [review]:
-----------------------------------------------------------------

Will push for you.
Attachment #790970 - Flags: review?(gps) → review+
https://hg.mozilla.org/mozilla-central/rev/d10a2d94e6f4
Status: NEW → RESOLVED
Closed: 11 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla26
Product: Core → Firefox Build System
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Created:
Updated:
Size: