From 301c6bce3c55e35d57e35b25fe388740621ef7d0 Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Fri, 6 Apr 2007 19:04:59 +0000 Subject: [PATCH] Use cp -R rather than cp -a for portability reasons --- libraries/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 $@ -- 1.7.10.4