Date: Wed, 3 Nov 2021 09:02:05 GMT From: Jan Beich <jbeich@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: 83b2b89fdf58 - main - graphics/frogr: fix typo in Meson option name Message-ID: <202111030902.1A3925Xw022004@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by jbeich: URL: https://cgit.FreeBSD.org/ports/commit/?id=83b2b89fdf58eb40c2efa566b2b668bb5ab8dc3f commit 83b2b89fdf58eb40c2efa566b2b668bb5ab8dc3f Author: Jan Beich <jbeich@FreeBSD.org> AuthorDate: 2021-11-03 08:21:30 +0000 Commit: Jan Beich <jbeich@FreeBSD.org> CommitDate: 2021-11-03 09:00:11 +0000 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 --- graphics/frogr/files/patch-meson.build | 6 ++++-- 1 file 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' ])
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202111030902.1A3925Xw022004>