mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-27 21:00:50 +00:00
Bug 798158 - Part 0: Do not treat format warnings as errors in a few directories; r=mshal
This commit is contained in:
parent
f158767b3e
commit
156d7e387b
@ -229,3 +229,7 @@ LOCAL_INCLUDES += [
|
||||
'/layout/xul',
|
||||
'/netwerk/base/src',
|
||||
]
|
||||
|
||||
if CONFIG['GNU_CC'] and CONFIG['MOZ_WIDGET_TOOLKIT'] == 'android':
|
||||
# Work around bug 986928
|
||||
CXXFLAGS += ['-Wno-error=format']
|
||||
|
@ -30,3 +30,7 @@ LOCAL_INCLUDES += [
|
||||
RESOURCE_FILES.dtd += [
|
||||
'htmlmathml-f.ent',
|
||||
]
|
||||
|
||||
if CONFIG['GNU_CC'] and CONFIG['MOZ_WIDGET_TOOLKIT'] == 'android':
|
||||
# Work around bug 986928
|
||||
CXXFLAGS += ['-Wno-error=format']
|
||||
|
@ -19,3 +19,7 @@ FINAL_LIBRARY = 'gklayout'
|
||||
LOCAL_INCLUDES += [
|
||||
'/dom/events/',
|
||||
]
|
||||
|
||||
if CONFIG['GNU_CC'] and CONFIG['MOZ_WIDGET_TOOLKIT'] == 'android':
|
||||
# Work around bug 986928
|
||||
CXXFLAGS += ['-Wno-error=format']
|
||||
|
@ -157,3 +157,7 @@ LOCAL_INCLUDES += [
|
||||
|
||||
if CONFIG['MOZ_OPTIMIZE']:
|
||||
DEFINES['MOZ_OPTIMIZE'] = True
|
||||
|
||||
if CONFIG['GNU_CC'] and CONFIG['MOZ_WIDGET_TOOLKIT'] == 'android':
|
||||
# Work around bug 986928
|
||||
CXXFLAGS += ['-Wno-error=format']
|
||||
|
Loading…
x
Reference in New Issue
Block a user