diff options
author | Magnus Hagander <magnus@hagander.net> | 2011-07-12 15:25:08 +0100 |
---|---|---|
committer | Magnus Hagander <magnus@hagander.net> | 2011-07-12 15:25:08 +0100 |
commit | fd6913a18955b0f89ca994b5036c103bcea23f28 (patch) | |
tree | 94387b688d50a75390ee5008f5348fd6d136b6bc /src/tools/msvc/Solution.pm | |
parent | 912bc4f038b3daaea4477c4b4e79fbd8c15e67a0 (diff) | |
download | postgresql-fd6913a18955b0f89ca994b5036c103bcea23f28.tar.gz postgresql-fd6913a18955b0f89ca994b5036c103bcea23f28.zip |
perltidy run over msvc build system
Diffstat (limited to 'src/tools/msvc/Solution.pm')
-rw-r--r-- | src/tools/msvc/Solution.pm | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/src/tools/msvc/Solution.pm b/src/tools/msvc/Solution.pm index 1a7b94da6cd..36fd4b71601 100644 --- a/src/tools/msvc/Solution.pm +++ b/src/tools/msvc/Solution.pm @@ -273,23 +273,30 @@ s{PG_VERSION_STR "[^"]+"}{__STRINGIFY(x) #x\n#define __STRINGIFY2(z) __STRINGIFY ); } - if ($self->{options}->{python} && IsNewer('src\pl\plpython\spiexceptions.h','src\include\backend\errcodes.txt')) + if ($self->{options}->{python} + && IsNewer('src\pl\plpython\spiexceptions.h','src\include\backend\errcodes.txt')) { print "Generating spiexceptions.h...\n"; - system('perl src\pl\plpython\generate-spiexceptions.pl src\backend\utils\errcodes.txt > src\pl\plpython\spiexceptions.h'); + system( +'perl src\pl\plpython\generate-spiexceptions.pl src\backend\utils\errcodes.txt > src\pl\plpython\spiexceptions.h' + ); } if (IsNewer('src\include\utils\errcodes.h','src\backend\utils\errcodes.txt')) { print "Generating errcodes.h...\n"; - system('perl src\backend\utils\generate-errcodes.pl src\backend\utils\errcodes.txt > src\backend\utils\errcodes.h'); + system( +'perl src\backend\utils\generate-errcodes.pl src\backend\utils\errcodes.txt > src\backend\utils\errcodes.h' + ); copyFile('src\backend\utils\errcodes.h','src\include\utils\errcodes.h'); } if (IsNewer('src\pl\plpgsql\src\plerrcodes.h','src\backend\utils\errcodes.txt')) { print "Generating plerrcodes.h...\n"; - system('perl src\pl\plpgsql\src\generate-plerrcodes.pl src\backend\utils\errcodes.txt > src\pl\plpgsql\src\plerrcodes.h'); + system( +'perl src\pl\plpgsql\src\generate-plerrcodes.pl src\backend\utils\errcodes.txt > src\pl\plpgsql\src\plerrcodes.h' + ); } if (IsNewer('src\interfaces\libpq\libpq.rc','src\interfaces\libpq\libpq.rc.in')) |