From: Andrew Innes Date: Sat, 6 Jan 2001 21:16:12 +0000 (+0000) Subject: Be careful not to add trailing spaces when X-Git-Tag: emacs-pretest-21.0.95~79 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=7389a353052157196da5aae21b0229be7e1c3d59;p=emacs.git Be careful not to add trailing spaces when outputting to config.settings. --- diff --git a/nt/configure.bat b/nt/configure.bat index f04bbfa4870..8abb58c7ebc 100755 --- a/nt/configure.bat +++ b/nt/configure.bat @@ -235,13 +235,13 @@ if %COMPILER% == cl set MAKECMD=nmake rem Pass on chosen settings to makefiles. echo # Start of settings from configure.bat >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 (%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 echo. >>config.settings copy config.nt ..\src\config.h