emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Pushing newer nt/subdirs.el into site-lisp/


From: Juanma Barranquero
Subject: Pushing newer nt/subdirs.el into site-lisp/
Date: Tue, 30 Jan 2007 11:16:39 +0100

nt/configure.bat does not copy subdirs.el to site-lisp/ if it already
exists. That precludes pushing any changes in nt/subdirs.el into
site-lisp/.

Is that by design, or would be better to apply the following patch?


                   /L/e/k/t/u


Index: nt/configure.bat
===================================================================
RCS file: /cvsroot/emacs/emacs/nt/configure.bat,v
retrieving revision 1.35
diff -u -2 -r1.35 configure.bat
--- nt/configure.bat    21 Jan 2007 04:26:22 -0000      1.35
+++ nt/configure.bat    30 Jan 2007 10:07:36 -0000
@@ -520,5 +520,6 @@
Rem Some people use WinZip which doesn't create empty directories!
if not exist ..\site-lisp\nul mkdir ..\site-lisp\
-if not exist ..\site-lisp\subdirs.el copy subdirs.el ..\site-lisp\subdirs.el
+if exist ..\site-lisp\subdirs.el del ..\site-lisp\subdirs.el
+copy subdirs.el ..\site-lisp\subdirs.el

echo.




reply via email to

[Prev in Thread] Current Thread [Next in Thread]