bug-gnu-emacs
[Top][All Lists]
Advanced

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

[PATCH] nt/gmake,defs, nt/nmake.defs


From: Bill Meier
Subject: [PATCH] nt/gmake,defs, nt/nmake.defs
Date: Tue, 15 Jan 2008 17:18:45 -0500 (EST)

I've just completed building emacs 22.1 on Windows using MinGW. Everything
went well. I note, however, that the install doesn't preserve the file
date/time/etc for the files copied to the install dirs (when the install dirs
are different than the build dirs). It seems to me that the date/time/etc
should be preserved.

The patch below (created using 'cvs diff') changes the definition of CP and
CP_DIR in the gmake.defs and nmake.defs files in nt/ to use the 'p' option.

Bill Meier


Index: nt/gmake.defs
===================================================================
RCS file: /sources/emacs/emacs/nt/gmake.defs,v
retrieving revision 1.33
diff -r1.33 gmake.defs
211,212c211,212
< CP            = cp -f
< CP_DIR                = cp -rf
---
> CP            = cp -pf
> CP_DIR                = cp -prf
Index: nt/nmake.defs
===================================================================
RCS file: /sources/emacs/emacs/nt/nmake.defs,v
retrieving revision 1.30
diff -r1.30 nmake.defs
159,160c159,160
< CP            = cp -f
< CP_DIR                = cp -rf
---
> CP            = cp -pf
> CP_DIR                = cp -prf





reply via email to

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