mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-19 01:10:22 +00:00
Bug 338305: Debug builds fail for people whose username contains a period, r=bsmedberg
This commit is contained in:
parent
6f98e3e44a
commit
de05bf637d
@ -39,9 +39,9 @@ while ($_ = $ARGV[0], defined($_) && /^-./) {
|
||||
last if /^--$/os;
|
||||
if (/^-D(.*)$/os) {
|
||||
for ($1) {
|
||||
if (/^(\w+)=(.*)$/os) {
|
||||
if (/^([\w\.]+)=(.*)$/os) {
|
||||
$stack->define($1, $2);
|
||||
} elsif (/^(\w+)$/os) {
|
||||
} elsif (/^([\w\.]+)$/os) {
|
||||
$stack->define($1, 1);
|
||||
} else {
|
||||
die "$0: invalid argument to -D: $_\n";
|
||||
|
Loading…
x
Reference in New Issue
Block a user