From e14871c95718caa009caddae10a1e20fbdf32176 Mon Sep 17 00:00:00 2001 From: sof Date: Fri, 17 Jan 2003 16:22:09 +0000 Subject: [PATCH] [project @ 2003-01-17 16:22:09 by sof] mingw: use cp's -u flag when copying over hi-boot files (or not, as the case might be now.) --- ghc/compiler/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghc/compiler/Makefile b/ghc/compiler/Makefile index 982ac59..3de4b89 100644 --- a/ghc/compiler/Makefile +++ b/ghc/compiler/Makefile @@ -104,7 +104,7 @@ boot :: # Hence the "../.." in the ln command line ifeq "$(HOSTPLATFORM)" "i386-unknown-mingw32" for i in */*hi-boot*; do \ - cp -f $$i stage$(stage)/$$i; \ + cp -u -f $$i stage$(stage)/$$i; \ done else for i in */*hi-boot*; do \ -- 1.7.10.4