summaryrefslogtreecommitdiff
path: root/src/tools
diff options
context:
space:
mode:
authorPeter Eisentraut2012-05-15 19:19:04 +0000
committerPeter Eisentraut2012-05-15 19:19:41 +0000
commitc8e086795a7ffc5244e03ffc2c92a3ae915a5055 (patch)
tree6b519eb94acdae669b6c6ecb9509e242bb2c2963 /src/tools
parent131b4d647388cb756e5aab1f1462c8b46125d89c (diff)
Remove whitespace from end of lines
pgindent and perltidy should clean up the rest.
Diffstat (limited to 'src/tools')
-rwxr-xr-xsrc/tools/copyright.pl2
-rw-r--r--src/tools/msvc/README2
-rw-r--r--src/tools/msvc/install.bat2
-rwxr-xr-xsrc/tools/pginclude/pgrminclude6
4 files changed, 6 insertions, 6 deletions
diff --git a/src/tools/copyright.pl b/src/tools/copyright.pl
index db5a2f023c3..d78a8d8ce88 100755
--- a/src/tools/copyright.pl
+++ b/src/tools/copyright.pl
@@ -1,4 +1,4 @@
-#!/usr/bin/perl
+#!/usr/bin/perl
#################################################################
# copyright.pl -- update copyright notices throughout the source tree, idempotently.
#
diff --git a/src/tools/msvc/README b/src/tools/msvc/README
index bbadb34829c..3b2939ad686 100644
--- a/src/tools/msvc/README
+++ b/src/tools/msvc/README
@@ -76,7 +76,7 @@ Solution.pm module containing the code to generate the Visual
Studio solution files.
VCBuildProject.pm module containing the code to generate VCBuild based
project files (Visual Studio 2005/2008)
-VSObjectFactory.pm factory module providing the code to create the
+VSObjectFactory.pm factory module providing the code to create the
appropriate project/solution files for the current
environment
diff --git a/src/tools/msvc/install.bat b/src/tools/msvc/install.bat
index 1d2ab9c9b0a..c636cbd7f70 100644
--- a/src/tools/msvc/install.bat
+++ b/src/tools/msvc/install.bat
@@ -18,7 +18,7 @@ IF NOT EXIST buildenv.pl goto nobuildenv
perl -e "require 'buildenv.pl'; while(($k,$v) = each %%ENV) { print qq[\@SET $k=$v\n]; }" > bldenv.bat
CALL bldenv.bat
del bldenv.bat
-:nobuildenv
+:nobuildenv
perl install.pl "%1"
diff --git a/src/tools/pginclude/pgrminclude b/src/tools/pginclude/pgrminclude
index 383c5044bd7..7cbd2e7c9ca 100755
--- a/src/tools/pginclude/pgrminclude
+++ b/src/tools/pginclude/pgrminclude
@@ -43,7 +43,7 @@ verbose_output() {
process_includes_in_file() {
# loop through all includes mentioned in the file
- cat "$FILE" |
+ cat "$FILE" |
grep "^#include\>" |
grep -v '/\* *pgrminclude *ignore *\*/' |
sed 's/^#include[ ]*[<"]\([^>"]*\).*$/\1/g' |
@@ -80,7 +80,7 @@ compile_file() {
grep -v "^#else" |
grep -v "^#elif" |
grep -v "^#endif" |
- # with #if blocks gone, now undef #defines to avoid redefine
+ # with #if blocks gone, now undef #defines to avoid redefine
# warning and failure
sed 's/#define[ ][ ]*\([A-Za-z0-9_]*\).*$/#undef \1\n&/' >/tmp/$$a
@@ -121,7 +121,7 @@ compile_file() {
fi
}
-# Process include files first because they can affect the compilation
+# Process include files first because they can affect the compilation
# of *.c files.
(find . \( -name .git -a -prune \) -o -type f -name '*.h' -print | sort;
find . \( -name .git -a -prune \) -o -type f -name '*.c' -print | sort) |