[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] /srv/bzr/emacs/trunk r101679: nt/configure.bat: Fix condit
From: |
Eli Zaretskii |
Subject: |
[Emacs-diffs] /srv/bzr/emacs/trunk r101679: nt/configure.bat: Fix condition for copying paths.h into ../src/epaths.h. |
Date: |
Wed, 29 Sep 2010 15:58:11 +0200 |
User-agent: |
Bazaar (2.0.3) |
------------------------------------------------------------
revno: 101679
committer: Eli Zaretskii <address@hidden>
branch nick: trunk
timestamp: Wed 2010-09-29 15:58:11 +0200
message:
nt/configure.bat: Fix condition for copying paths.h into ../src/epaths.h.
modified:
nt/ChangeLog
nt/configure.bat
=== modified file 'nt/ChangeLog'
--- a/nt/ChangeLog 2010-09-28 00:55:08 +0000
+++ b/nt/ChangeLog 2010-09-29 13:58:11 +0000
@@ -1,3 +1,8 @@
+2010-09-29 Eli Zaretskii <address@hidden>
+
+ * configure.bat: Fix the condition for copying paths.h into
+ ../src/epaths.h.
+
2010-09-28 Juanma Barranquero <address@hidden>
* addpm.c (entry, add_registry, main):
=== modified file 'nt/configure.bat'
--- a/nt/configure.bat 2010-09-22 23:14:00 +0000
+++ b/nt/configure.bat 2010-09-29 13:58:11 +0000
@@ -669,7 +669,7 @@
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
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] /srv/bzr/emacs/trunk r101679: nt/configure.bat: Fix condition for copying paths.h into ../src/epaths.h.,
Eli Zaretskii <=