diff options
author | Jason Rumney <jasonr@gnu.org> | 2008-04-21 21:31:53 +0000 |
---|---|---|
committer | Jason Rumney <jasonr@gnu.org> | 2008-04-21 21:31:53 +0000 |
commit | 361823f4948faf1bb81eee3d70717c3cb2ed085c (patch) | |
tree | a84c4680c5aacd1c4109de95de51d6f81c503aa6 /nt | |
parent | 92ec67e363032b8a677246d7571ea6c297d59707 (diff) | |
download | emacs-361823f4948faf1bb81eee3d70717c3cb2ed085c.tar.gz |
(success): Print "make" rather than "gmake", as that
is what MingW uses.
Diffstat (limited to 'nt')
-rw-r--r-- | nt/ChangeLog | 5 | ||||
-rwxr-xr-x | nt/configure.bat | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/nt/ChangeLog b/nt/ChangeLog index 9252520cd3a..4adb653464a 100644 --- a/nt/ChangeLog +++ b/nt/ChangeLog @@ -1,3 +1,8 @@ +2008-04-21 Jason Rumney <jasonr@gnu.org> + + * configure.bat (success): Print "make" rather than "gmake", as that + is what MingW uses. + 2008-04-11 Eli Zaretskii <eliz@gnu.org> * inc/sys/stat.h (__MINGW_NOTHROW): If not defined, define to nothing. diff --git a/nt/configure.bat b/nt/configure.bat index 41c4528930d..ff47f033ba2 100755 --- a/nt/configure.bat +++ b/nt/configure.bat @@ -24,11 +24,11 @@ rem ---------------------------------------------------------------------- rem YOU'LL NEED THE FOLLOWING UTILITIES TO MAKE EMACS:
rem
rem + MS Windows 95/98/Me or NT/2000/XP
-rem + either MSVC 2.x or later, or gcc-2.95 or later (with gmake 3.75
+rem + either MSVC 2.x or later, or gcc-2.95 or later (with GNU make 3.75
rem or later) and the Mingw32 and W32 API headers and libraries.
rem + Visual Studio 2005 is not supported at this time.
rem
-rem For reference, here is a list of which builds of gmake are known to
+rem For reference, here is a list of which builds of GNU make are known to
rem work or not, and whether they work in the presence and/or absence of
rem sh.exe.
rem
@@ -601,6 +601,7 @@ goto end :success
echo Emacs successfully configured.
echo Emacs successfully configured. >>config.log
+if (%MAKECMD%) == (gmake) set MAKECMD=make
echo Run `%MAKECMD%' to build, then run `%MAKECMD% install' to install.
goto end
|