diff options
author | Matt A. Tobin <email@mattatobin.com> | 2019-10-16 12:43:20 -0400 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2019-10-16 12:43:20 -0400 |
commit | b51ff1f69273f116eb9a1a36043e23d77d2235cb (patch) | |
tree | 638f73a88d446d45aa34a5a5265ff39836d03906 /js/xpconnect | |
parent | e31d79e8da99456247df84c2f99ba9083d46efe1 (diff) | |
download | uxp-b51ff1f69273f116eb9a1a36043e23d77d2235cb.tar.gz |
Don't treat format warnings as errors in xpconnect
GCC 9 compiler does not like the way we have it in XPCWrappedNative.cpp
Diffstat (limited to 'js/xpconnect')
-rw-r--r-- | js/xpconnect/src/moz.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/xpconnect/src/moz.build b/js/xpconnect/src/moz.build index 7d9cd5b37f..29cfc47768 100644 --- a/js/xpconnect/src/moz.build +++ b/js/xpconnect/src/moz.build @@ -66,4 +66,4 @@ LOCAL_INCLUDES += [ ] if CONFIG['GNU_CXX']: - CXXFLAGS += ['-Wno-shadow', '-Werror=format'] + CXXFLAGS += ['-Wno-shadow'] |