From: | Nazir Bilal Yavuz <byavuz81(at)gmail(dot)com> |
---|---|
To: | Andrew Dunstan <andrew(at)dunslane(dot)net> |
Cc: | Andres Freund <andres(at)anarazel(dot)de>, Peter Eisentraut <peter(dot)eisentraut(at)enterprisedb(dot)com>, PostgreSQL Hackers <pgsql-hackers(at)lists(dot)postgresql(dot)org> |
Subject: | Re: buildfarm + meson |
Date: | 2023-03-08 14:40:25 |
Message-ID: | CAN55FZ0e7yACHYPf0h7VT4QbkLX5npx55sXBDfjimFHmtjTv+g@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
Hi,
On Wed, 8 Mar 2023 at 16:57, Andrew Dunstan <andrew(at)dunslane(dot)net> wrote:
> So if I understand this right, the way to use this would be something like:
>
>
> local $ENV{DESTDIR} = $installdir;
>
> run_log("meson compile -C $pgsql install-test-files");
>
>
> Is that right? I did that but it didn't work :-(
I think you shouldn't set DESTDIR to the $installdir. If DESTDIR is
set, it joins $DESTDIR and $install_dir(-Dprefix). So, when you run
local $ENV{DESTDIR} = $installdir;
run_log("meson compile -C $pgsql install-test-files");
it installs these files to the '$install_dir/$install_dir'.
Could you try only running 'run_log("meson compile -C $pgsql
install-test-files");' without setting DESTDIR, this could work.
Regards,
Nazir Bilal Yavuz
Microsoft
From | Date | Subject | |
---|---|---|---|
Next Message | Andrew Dunstan | 2023-03-08 14:41:57 | Re: buildfarm + meson |
Previous Message | Laurenz Albe | 2023-03-08 14:18:47 | Re: Allow tailoring of ICU locales with custom rules |