From: Jeff Davis Date: Fri, 7 Jul 2023 18:39:19 +0000 (-0700) Subject: test_extensions: sync meson.build with Makefile. X-Git-Tag: REL_17_BETA1~2181 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9f6253613e8857942b1928bd7163bc1529fc9c69;p=thirdparty%2Fpostgresql.git test_extensions: sync meson.build with Makefile. Makefile does not specify ENCODING, meson.build should not, either. Oversight in commit 877bf52cff. Discussion: https://postgr.es/m/ZKYpvvNQdbQuRDGx@paquier.xyz Reported-by: Michael Paquier --- diff --git a/src/test/modules/test_extensions/meson.build b/src/test/modules/test_extensions/meson.build index 698775b28d8..cbb8401579f 100644 --- a/src/test/modules/test_extensions/meson.build +++ b/src/test/modules/test_extensions/meson.build @@ -47,6 +47,6 @@ tests += { 'test_extensions', 'test_extdepend', ], - 'regress_args': ['--no-locale', '--encoding=UTF8'], + 'regress_args': ['--no-locale'], }, }