From: Stephen Adams Date: Tue, 7 Oct 1997 19:35:48 +0000 (+0000) Subject: Use `cp -p' to preserve file times. X-Git-Tag: 20090517-FFI~5000 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=298fcee7f951038b41996a1cfc8d0ad1198942d3;p=mit-scheme.git Use `cp -p' to preserve file times. --- diff --git a/v7/src/swat/Makefile b/v7/src/swat/Makefile index 2b8820336..145b70e2c 100644 --- a/v7/src/swat/Makefile +++ b/v7/src/swat/Makefile @@ -1,5 +1,5 @@ ## -## $Id: Makefile,v 1.3 1997/10/07 19:33:49 adams Exp $ +## $Id: Makefile,v 1.4 1997/10/07 19:35:48 adams Exp $ ## ## ## @@ -36,7 +36,7 @@ install: scheme/compiled rm -rf $(INSTALL_DIR) $(TCL_LIBRARY) $(TK_LIBRARY) mkdir $(INSTALL_DIR) $(INSTALL_DIR)/dynload \ $(TCL_LIBRARY) $(TK_LIBRARY) - cp $(C_LIBRARIES) $(INSTALL_DIR)/dynload + cp -p $(C_LIBRARIES) $(INSTALL_DIR)/dynload (cd c/tk3.2/library; cp -p *.tcl tclIndex prolog.ps $(TK_LIBRARY)) (cd c/tk3.2/tcl/library; cp -p *.tcl tclIndex $(TCL_LIBRARY)) (cd scheme; cp -p load.scm *.com *.bci demo-*.scm $(INSTALL_DIR))