diff options
author | Jan Schmidt <jan@centricular.com> | 2017-12-08 23:52:53 +1100 |
---|---|---|
committer | Jan Schmidt <jan@centricular.com> | 2017-12-08 23:56:50 +1100 |
commit | 7a110002843054644dcb04a9ecd72e06e019c2b1 (patch) | |
tree | ca0051b524b8bea15c7945cf98315aa0328d34c1 /recipes | |
parent | 104ed363468c6e63f227f079979fe8b621bca28a (diff) |
build-tools/m4.recipe: Don't error on switch statement fallthrough.
Now a warning in -Wall on gcc 7.2, making the bootstrap fail on Fedora 27
Diffstat (limited to 'recipes')
-rw-r--r-- | recipes/build-tools/m4.recipe | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes/build-tools/m4.recipe b/recipes/build-tools/m4.recipe index f991056e..99d8c542 100644 --- a/recipes/build-tools/m4.recipe +++ b/recipes/build-tools/m4.recipe @@ -12,4 +12,4 @@ class Recipe(recipe.Recipe): patches = ['m4/0001-Fix-build-invalid-instruction-on-macOS-10.13.patch'] def prepare(self): - self.append_env['CFLAGS'] = " -Wno-error=cast-align " + self.append_env['CFLAGS'] = " -Wno-error=cast-align -Wno-error=implicit-fallthrough" |