From: | Andrew Dunstan <andrew(at)dunslane(dot)net> |
---|---|
To: | pgsql-committers(at)lists(dot)postgresql(dot)org |
Subject: | pgsql: Fix included file path for modern perl |
Date: | 2019-02-06 00:36:07 |
Message-ID: | E1grBCB-0000rN-SU@gemulon.postgresql.org |
Views: | Whole Thread | Raw Message | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-committers |
Fix included file path for modern perl
Contrary to the comment on 772d4b76, only paths starting with "./" or
"../" are considered relative to the current working directory by perl's
"do" function. So this patch converts all the relevant cases to use "./"
paths. This only affects MSVC.
Backpatch to all live branches.
Branch
------
REL_11_STABLE
Details
-------
https://git.postgresql.org/pg/commitdiff/77173d0cca4df1df1f423a467e2af4a4db9a0d10
Modified Files
--------------
src/tools/msvc/Install.pm | 4 ++--
src/tools/msvc/build.pl | 6 +++---
src/tools/msvc/install.pl | 2 +-
src/tools/msvc/mkvcbuild.pl | 4 ++--
src/tools/msvc/pgbison.pl | 2 +-
src/tools/msvc/pgflex.pl | 2 +-
src/tools/msvc/vcregress.pl | 6 +++---
7 files changed, 13 insertions(+), 13 deletions(-)
From | Date | Subject | |
---|---|---|---|
Next Message | Michael Paquier | 2019-02-06 08:35:03 | pgsql: Tighten some regexes with proper character escaping in pg_dump T |
Previous Message | Andrew Dunstan | 2019-02-05 23:36:34 | pgsql: More fixed for modern perl on back branches |