From: Ian Lynagh Date: Fri, 6 Apr 2007 19:04:59 +0000 (+0000) Subject: Use cp -R rather than cp -a for portability reasons X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=301c6bce3c55e35d57e35b25fe388740621ef7d0 Use cp -R rather than cp -a for portability reasons --- diff --git a/libraries/Makefile b/libraries/Makefile index 694adae..e0ecc62 100644 --- a/libraries/Makefile +++ b/libraries/Makefile @@ -99,7 +99,7 @@ $(foreach SUBDIR,$(SUBDIRS),$(SUBDIR)/setup/Setup): \ stamp/$(BOOTSTRAPPING_CABAL): $(RM) -rf $(BOOTSTRAPPING_CABAL) - $(CP) -a Cabal $(BOOTSTRAPPING_CABAL) + $(CP) -R Cabal $(BOOTSTRAPPING_CABAL) $(FIND) $(BOOTSTRAPPING_CABAL) \( -name "*.o" -o -name "*.hi" \) -exec $(RM) -f {} \; touch $@