Skip to content

Commit c3879a7

Browse files
committed
Allow MSVC .bat wrappers to be called from anywhere
Instead of using a hardcoded or default path to the perl file the .bat file is a wrapper for, we use a path that means the file is found in the same directory as the .bat file. Patch by Anton Voloshin, slightly tweaked by me. Backpatch to all live branches Discussion: https://postgr.es/m/[email protected]
1 parent 825d95e commit c3879a7

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

src/tools/msvc/build.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ REM src/tools/msvc/build.bat
33
REM all the logic for this now belongs in build.pl. This file really
44
REM only exists so you don't have to type "perl build.pl"
55
REM Resist any temptation to add any logic here.
6-
@perl build.pl %*
6+
@perl %~dp0/build.pl %*

src/tools/msvc/install.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ REM src/tools/msvc/install.bat
33
REM all the logic for this now belongs in install.pl. This file really
44
REM only exists so you don't have to type "perl install.pl"
55
REM Resist any temptation to add any logic here.
6-
@perl install.pl %*
6+
@perl %~dp0/install.pl %*

src/tools/msvc/pgbison.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ REM src/tools/msvc/pgbison.bat
44
REM all the logic for this now belongs in pgbison.pl. This file really
55
REM only exists so you don't have to type "perl src/tools/msvc/pgbison.pl"
66
REM Resist any temptation to add any logic here.
7-
@perl src/tools/msvc/pgbison.pl %*
7+
@perl %~dp0/pgbison.pl %*

src/tools/msvc/pgflex.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ REM src/tools/msvc/pgflex.bat
44
REM all the logic for this now belongs in pgflex.pl. This file really
55
REM only exists so you don't have to type "perl src/tools/msvc/pgflex.pl"
66
REM Resist any temptation to add any logic here.
7-
@perl src/tools/msvc/pgflex.pl %*
7+
@perl %~dp0/pgflex.pl %*

src/tools/msvc/vcregress.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ REM src/tools/msvc/vcregress.bat
33
REM all the logic for this now belongs in vcregress.pl. This file really
44
REM only exists so you don't have to type "perl vcregress.pl"
55
REM Resist any temptation to add any logic here.
6-
@perl vcregress.pl %*
6+
@perl %~dp0/vcregress.pl %*

0 commit comments

Comments
 (0)