diff options
author | Patrick Ohly <patrick.ohly@intel.com> | 2011-10-10 17:20:26 +0200 |
---|---|---|
committer | Patrick Ohly <patrick.ohly@intel.com> | 2011-10-12 14:55:45 +0200 |
commit | ce0950ba56a557a1c7dc948e6f70c893b4b1aa2f (patch) | |
tree | 486129243fae66fd5eefb585632de1a62235a616 | |
parent | 5594f7087ab004dbbb905f5296e11bc5860c5406 (diff) |
autotools: same suppressions for all warning levels
Warnings that are ignored at the "fatal" level shouldn't be shown at
the minimum level because that becomes confusing.
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index b3458ac..2be574b 100644 --- a/configure.in +++ b/configure.in @@ -16,7 +16,7 @@ AM_PROG_CC_C_O # --enable-warning=min/max/fatal/none DK_ARG_ENABLE_WARNINGS([SYNTHESIS_WFLAGS], - [-Wall], + [-Wall -Wno-unknown-pragmas], [-Wall -Wno-unknown-pragmas], []) |