aboutsummaryrefslogtreecommitdiff
path: root/graphics/frogr
diff options
context:
space:
mode:
authorJan Beich <jbeich@FreeBSD.org>2021-11-03 08:21:30 +0000
committerJan Beich <jbeich@FreeBSD.org>2021-11-03 09:00:11 +0000
commit83b2b89fdf58eb40c2efa566b2b668bb5ab8dc3f (patch)
tree7e740db6487bcbd6f5fea41294cdc33ef3c0504e /graphics/frogr
parentf90000b2aa19d17b86b3bb1c04b9b634670e27c2 (diff)
downloadports-83b2b89fdf58eb40c2efa566b2b668bb5ab8dc3f.tar.gz
ports-83b2b89fdf58eb40c2efa566b2b668bb5ab8dc3f.zip
graphics/frogr: fix typo in Meson option name
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: https://github.com/mesonbuild/meson/commit/dbf2ace6ca1c frogr
Diffstat (limited to 'graphics/frogr')
-rw-r--r--graphics/frogr/files/patch-meson.build6
1 files changed, 4 insertions, 2 deletions
diff --git a/graphics/frogr/files/patch-meson.build b/graphics/frogr/files/patch-meson.build
index eeaee55f35d6..bd7f8e89ca0a 100644
--- a/graphics/frogr/files/patch-meson.build
+++ b/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'
])