# HG changeset patch # User Andrew Innes # Date 981224587 0 # Node ID 4fde4702e421abc3e4a50bd85cd6d4e252e8e8c2 # Parent aec170580429305f5e4f9e9384f6756d27393172 Leave a space before >> only when there is a preceding digit. Add a comment about the importance of this. diff -r aec170580429 -r 4fde4702e421 nt/configure.bat --- a/nt/configure.bat Sat Feb 03 06:20:16 2001 +0000 +++ b/nt/configure.bat Sat Feb 03 18:23:07 2001 +0000 @@ -233,20 +233,23 @@ if %COMPILER% == cl set MAKECMD=nmake rem Pass on chosen settings to makefiles. +rem NB. Be very careful to not have a space before redirection symbols +rem except when there is a preceding digit, when a space is required. +rem echo # Start of settings from configure.bat >config.settings -echo COMPILER=%COMPILER% >>config.settings +echo COMPILER=%COMPILER%>>config.settings if (%nodebug%) == (Y) echo NODEBUG=1 >>config.settings if (%noopt%) == (Y) echo NOOPT=1 >>config.settings if (%nocygwin%) == (Y) echo NOCYGWIN=1 >>config.settings -if not "(%prefix%)" == "()" echo INSTALL_DIR=%prefix% >>config.settings -if not "(%usercflags%)" == "()" echo USER_CFLAGS=%usercflags% >>config.settings -if not "(%userldflags%)" == "()" echo USER_LDFLAGS=%userldflags% >>config.settings -echo # End of settings from configure.bat >>config.settings +if not "(%prefix%)" == "()" echo INSTALL_DIR=%prefix%>>config.settings +if not "(%usercflags%)" == "()" echo USER_CFLAGS=%usercflags%>>config.settings +if not "(%userldflags%)" == "()" echo USER_LDFLAGS=%userldflags%>>config.settings +echo # End of settings from configure.bat>>config.settings echo. >>config.settings copy config.nt ..\src\config.h -if not "(%usercflags%)" == "()" echo #define USER_CFLAGS " %usercflags%" >>..\src\config.h -if not "(%userldflags%)" == "()" echo #define USER_LDFLAGS " %userldflags%" >>..\src\config.h +if not "(%usercflags%)" == "()" echo #define USER_CFLAGS " %usercflags%">>..\src\config.h +if not "(%userldflags%)" == "()" echo #define USER_LDFLAGS " %userldflags%">>..\src\config.h copy paths.h ..\src\epaths.h copy /b config.settings+%MAKECMD%.defs+..\nt\makefile.w32-in ..\nt\makefile