Skip to content

Commit

Permalink
graphics/frogr: fix typo in Meson option name
Browse files Browse the repository at this point in the history
meson.build:1:0: ERROR: Unknown options: "warnlevel"

https://gitlab.gnome.org/GNOME/frogr/-/commit/623d7e397baf

PR:		259080
Reported by:	antoine (via exp-run)
Regressed by:	mesonbuild/meson@dbf2ace6ca1c

frogr
  • Loading branch information
jbeich committed Nov 3, 2021
1 parent f90000b commit 83b2b89
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions graphics/frogr/files/patch-meson.build
@@ -1,10 +1,12 @@
--- meson.build.orig 2020-01-10 22:37:55 UTC
+++ meson.build
@@ -3,7 +3,7 @@ project('frogr', 'c',
@@ -2,8 +2,8 @@ project('frogr', 'c',
version: '1.6',
license: 'GPL3',
default_options: [
'warnlevel=2',
- 'warnlevel=2',
- 'werror=true'
+ 'warning_level=2',
+ 'werror=false'
])

Expand Down

0 comments on commit 83b2b89

Please sign in to comment.