]> git.eshelyaron.com Git - emacs.git/commitdiff
nt/configure.bat: Fix condition for copying paths.h into ../src/epaths.h.
authorEli Zaretskii <eliz@gnu.org>
Wed, 29 Sep 2010 13:58:11 +0000 (15:58 +0200)
committerEli Zaretskii <eliz@gnu.org>
Wed, 29 Sep 2010 13:58:11 +0000 (15:58 +0200)
nt/ChangeLog
nt/configure.bat

index bacb207c836ea3a4b44f04636e0923f4e1273929..03e4546c36c825c70ea233562981663ab0450e29 100644 (file)
@@ -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):
index 4866c9fcad5532617ba33e062b585bd94d237f76..4da259276738288496630f5b68b938a871b8cb94 100755 (executable)
@@ -669,7 +669,7 @@ if not errorlevel 2 goto doCopy
 fc /b config.tmp ..\src\config.h >nul 2>&1\r
 if errorlevel 1 goto doCopy\r
 fc /b paths.h ..\src\epaths.h >nul 2>&1\r
-if errorlevel 0 goto dontCopy\r
+if not errorlevel 1 goto dontCopy\r
 \r
 :doCopy\r
 copy config.tmp ..\src\config.h\r