From: Stephen Adams Date: Tue, 7 Oct 1997 19:33:49 +0000 (+0000) Subject: Use `cp -p' to preserve file times. X-Git-Tag: 20090517-FFI~5002 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=12a111814fa8c77c25d049006b015288494f46c2;p=mit-scheme.git Use `cp -p' to preserve file times. --- diff --git a/v7/src/swat/Makefile b/v7/src/swat/Makefile index 1bad634f7..2b8820336 100644 --- a/v7/src/swat/Makefile +++ b/v7/src/swat/Makefile @@ -1,5 +1,5 @@ ## -## $Id: Makefile,v 1.2 1996/07/31 16:15:36 adams Exp $ +## $Id: Makefile,v 1.3 1997/10/07 19:33:49 adams Exp $ ## ## ## @@ -37,9 +37,9 @@ install: scheme/compiled mkdir $(INSTALL_DIR) $(INSTALL_DIR)/dynload \ $(TCL_LIBRARY) $(TK_LIBRARY) cp $(C_LIBRARIES) $(INSTALL_DIR)/dynload - (cd c/tk3.2/library; cp *.tcl tclIndex prolog.ps $(TK_LIBRARY)) - (cd c/tk3.2/tcl/library; cp *.tcl tclIndex $(TCL_LIBRARY)) - (cd scheme; cp load.scm *.com *.bci $(INSTALL_DIR)) + (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)) echo "Installation complete"