Re: Silence Meson warning on HEAD

2024-04-04 Thread Peter Eisentraut
On 02.04.24 01:46, Tristan Partin wrote: A warning was recently[0] introduced into the Meson build: WARNING: Project targets '>=0.54' but uses feature introduced in '0.55.0': Passing executable/found program object to script parameter of add_dist_script There are 3 way to solve the issue tha

Re: Silence Meson warning on HEAD

2024-04-03 Thread Michael Paquier
On Mon, Apr 01, 2024 at 06:46:01PM -0500, Tristan Partin wrote: > 1. version-check.diff > > Wrap the offending line in a Meson version check. > > 2. perl-string.diff > > Pass the perl program as a string via its .path() method. > > 3. meson-bump.diff > > Bump the minimum meson version from 0.5

Silence Meson warning on HEAD

2024-04-01 Thread Tristan Partin
A warning was recently[0] introduced into the Meson build: WARNING: Project targets '>=0.54' but uses feature introduced in '0.55.0': Passing executable/found program object to script parameter of add_dist_script There are 3 way to solve the issue that I have laid out in 3 separate patches tha