diff options
author | Eli Zaretskii <eliz@gnu.org> | 2010-09-29 15:58:11 +0200 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2010-09-29 15:58:11 +0200 |
commit | 252b4f5cf6a2d98643fb3ad8b23fb0ae6f942f5e (patch) | |
tree | 05c7ac9a4b0a3bad75be524834df7467b621201d /nt | |
parent | 01270787618876cc4365456d72fd31945c624fba (diff) | |
download | emacs-252b4f5cf6a2d98643fb3ad8b23fb0ae6f942f5e.tar.gz |
nt/configure.bat: Fix condition for copying paths.h into ../src/epaths.h.
Diffstat (limited to 'nt')
-rw-r--r-- | nt/ChangeLog | 5 | ||||
-rwxr-xr-x | nt/configure.bat | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/nt/ChangeLog b/nt/ChangeLog index bacb207c836..03e4546c36c 100644 --- a/nt/ChangeLog +++ b/nt/ChangeLog @@ -1,3 +1,8 @@ +2010-09-29 Eli Zaretskii <eliz@gnu.org> + + * configure.bat: Fix the condition for copying paths.h into + ../src/epaths.h. + 2010-09-28 Juanma Barranquero <lekktu@gmail.com> * addpm.c (entry, add_registry, main): diff --git a/nt/configure.bat b/nt/configure.bat index 4866c9fcad5..4da25927673 100755 --- a/nt/configure.bat +++ b/nt/configure.bat @@ -669,7 +669,7 @@ if not errorlevel 2 goto doCopy fc /b config.tmp ..\src\config.h >nul 2>&1
if errorlevel 1 goto doCopy
fc /b paths.h ..\src\epaths.h >nul 2>&1
-if errorlevel 0 goto dontCopy
+if not errorlevel 1 goto dontCopy
:doCopy
copy config.tmp ..\src\config.h
|