diff options
author | Andrew Dunstan <andrew@dunslane.net> | 2011-01-23 12:24:15 -0500 |
---|---|---|
committer | Andrew Dunstan <andrew@dunslane.net> | 2011-01-23 12:24:15 -0500 |
commit | 6c41cf5977ca3f13159b980d4b216e3bc9df90e8 (patch) | |
tree | 44339d93255e719e33cbfef427e499eabe833476 /src | |
parent | d13e0975c9812dea583486e1d2efd3bc3e638df5 (diff) | |
download | postgresql-6c41cf5977ca3f13159b980d4b216e3bc9df90e8.tar.gz postgresql-6c41cf5977ca3f13159b980d4b216e3bc9df90e8.zip |
Silence flex warnings about DOS file paths in MSVC builds
Diffstat (limited to 'src')
-rwxr-xr-x | src/tools/msvc/pgflex.bat | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/tools/msvc/pgflex.bat b/src/tools/msvc/pgflex.bat index 7102e5690ec..da7c33d7af2 100755 --- a/src/tools/msvc/pgflex.bat +++ b/src/tools/msvc/pgflex.bat @@ -1,6 +1,9 @@ @echo off REM src/tools/msvc/pgflex.bat +REM silence flex bleatings about file path style +SET CYGWIN=nodosfilewarning + IF NOT EXIST src\tools\msvc\buildenv.pl goto nobuildenv perl -e "require 'src/tools/msvc/buildenv.pl'; while(($k,$v) = each %ENV) { print qq[\@SET $k=$v\n]; }" > bldenv.bat CALL bldenv.bat |