diff options
author | John Stebbins <[email protected]> | 2019-06-19 14:13:14 -0700 |
---|---|---|
committer | John Stebbins <[email protected]> | 2019-06-28 12:06:03 -0700 |
commit | 3e2f9fb57f48c591c2c1969a15cc9826241cfc55 (patch) | |
tree | 06d4303dedf9a07faebf1bb8c2d6da41ec2693fd /gtk | |
parent | edeffe2f8f5f6c5e3a8ff3dfaf31659318ca472e (diff) |
Fix gcc 9 compiler warnings
gcc 9 is quite a lot chattier and clutters the build log with useless
information :\
Diffstat (limited to 'gtk')
-rw-r--r-- | gtk/module.rules | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/module.rules b/gtk/module.rules index 09d99b466..579f4d08a 100644 --- a/gtk/module.rules +++ b/gtk/module.rules @@ -19,7 +19,7 @@ $(GTK.CONFIGURE.stamp): $(GTK.src/)configure.ac $(GTK.src/)src/Makefile.am PKG_CONFIG_PATH=$(BUILD/)contrib/lib/pkgconfig:$(PKG_CONFIG_PATH) \ CC="$(GCC.gcc)" \ CXX="$(GCC.gxx)" \ - CFLAGS="$(call fn.ARGS,GTK.GCC,.g .O *D ?extra)" \ + CFLAGS="$(call fn.ARGS,GTK.GCC,.g .O *D *W ?extra)" \ LDFLAGS="$(call fn.ARGS,GTK.GCC,?strip .g .O ?extra.exe)" \ PYTHON="$(PYTHON.exe)" \ --prefix=$(PREFIX) \ |