mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-24 21:31:04 +00:00
Bug 1206801 - fix broken CONFIG['DEBUG'] checks in moz.build files; r=mshal
These were supposed to be CONFIG['MOZ_DEBUG']. webapprt doesn't use the define it set up, however, so it was deleted rather than fixed.
This commit is contained in:
parent
87f6a90707
commit
156399b67f
@ -14,8 +14,6 @@ SOURCES += [
|
||||
]
|
||||
|
||||
DEFINES['XPCOM_GLUE'] = True
|
||||
if CONFIG['DEBUG']:
|
||||
DEFINES['DEBUG'] = True
|
||||
|
||||
DEFINES['APP_VERSION'] = CONFIG['FIREFOX_VERSION']
|
||||
|
||||
|
@ -70,7 +70,7 @@ SOURCES += [
|
||||
'nsNativeThemeCocoa.mm',
|
||||
]
|
||||
|
||||
if not CONFIG['RELEASE_BUILD'] or CONFIG['DEBUG']:
|
||||
if not CONFIG['RELEASE_BUILD'] or CONFIG['MOZ_DEBUG']:
|
||||
SOURCES += [
|
||||
'nsSandboxViolationSink.mm',
|
||||
]
|
||||
|
@ -13,7 +13,7 @@ SOURCES += [
|
||||
]
|
||||
|
||||
DEFINES['XULRUNNER_PROGNAME'] = '"xulrunner"'
|
||||
if CONFIG['DEBUG']:
|
||||
if CONFIG['MOZ_DEBUG']:
|
||||
DEFINES['DEBUG'] = True
|
||||
|
||||
LOCAL_INCLUDES += [
|
||||
|
Loading…
Reference in New Issue
Block a user