From 73011f35eca7f4a3973289d5813648abbc1074a0 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Mon, 12 May 2014 14:24:18 -0400 Subject: [PATCH] Ignore config.pl and buildenv.pl in src/tools/msvc. config.pl and buildenv.pl can be used to customize build settings when using MSVC. They should never get committed into the common source tree. Back-patch to 9.0; it looks like the rules were different in 8.4. Michael Paquier --- src/tools/msvc/.gitignore | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 src/tools/msvc/.gitignore diff --git a/src/tools/msvc/.gitignore b/src/tools/msvc/.gitignore new file mode 100644 index 0000000000..2470e7850d --- /dev/null +++ b/src/tools/msvc/.gitignore @@ -0,0 +1,3 @@ +# Custom configuration files for MSVC build +/config.pl +/buildenv.pl