Leave a space before >> only when there is a
preceding digit. Add a comment about the importance of this.
This commit is contained in:
parent
9a4024ed5d
commit
f80e3dc455
1 changed files with 10 additions and 7 deletions
|
@ -233,20 +233,23 @@ if %COMPILER% == gcc set MAKECMD=gmake
|
|||
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
|
||||
|
|
Loading…
Add table
Reference in a new issue