Add option to preserve timestamps when installing programs, if the
authorChris Hanson <org/chris-hanson/cph>
Sun, 15 Apr 2001 21:12:29 +0000 (21:12 +0000)
committerChris Hanson <org/chris-hanson/cph>
Sun, 15 Apr 2001 21:12:29 +0000 (21:12 +0000)
install program supports it.

v7/src/configure.in
v7/src/microcode/configure.in

index 19c226802ab3facd44ef1365bd9eecfe59887e6c..e808def2fa8cf9a1720231c0347a6f6fd5c1ecda 100644 (file)
@@ -1,6 +1,6 @@
 dnl Process this file with autoconf to produce a configure script.
 
-dnl Copyright (c) 2000 Massachusetts Institute of Technology
+dnl Copyright (c) 2000-2001 Massachusetts Institute of Technology
 dnl
 dnl This program is free software; you can redistribute it and/or
 dnl modify it under the terms of the GNU General Public License as
@@ -14,14 +14,19 @@ dnl General Public License for more details.
 dnl
 dnl You should have received a copy of the GNU General Public License
 dnl along with this program; if not, write to the Free Software
-dnl Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+dnl Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+dnl 02111-1307, USA.
 
-AC_REVISION([$Id: configure.in,v 1.2 2000/12/21 18:11:30 cph Exp $])
+AC_REVISION([$Id: configure.in,v 1.3 2001/04/15 21:12:22 cph Exp $])
 AC_INIT(microcode/boot.c)
 
 AC_PROG_INSTALL
 AC_PROG_LN_S
 AC_PROG_MAKE_SET
+if test "$(${INSTALL} --help 2> /dev/null | fgrep -e --preserve-timestamps)"
+then
+    INSTALL="${INSTALL} --preserve-timestamps"
+fi
 
 AUXDIR=${libdir}/mit-scheme
 AC_SUBST(AUXDIR)
index 56a4aa1a03bc26b922e11a1a09e2fc0ece6263a8..0b7ac606e5a8f889e129a2b9fede2c2bf2824529 100644 (file)
@@ -17,7 +17,7 @@ dnl along with this program; if not, write to the Free Software
 dnl Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
 dnl 02111-1307, USA.
 
-AC_REVISION([$Id: configure.in,v 11.11 2001/04/10 20:49:08 cph Exp $])
+AC_REVISION([$Id: configure.in,v 11.12 2001/04/15 21:12:29 cph Exp $])
 AC_INIT(boot.c)
 AC_CONFIG_HEADER(config.h)
 
@@ -62,6 +62,10 @@ AC_PROG_MAKE_SET
 if test "${GCC}" = "yes"; then
     CFLAGS="${CFLAGS} -Wall"
 fi
+if test "$(${INSTALL} --help 2> /dev/null | fgrep -e --preserve-timestamps)"
+then
+    INSTALL="${INSTALL} --preserve-timestamps"
+fi
 
 dnl Checks for libraries.
 AC_CHECK_LIB(dl, dlopen)