Use cp -R rather than cp -a for portability reasons
authorIan Lynagh <igloo@earth.li>
Fri, 6 Apr 2007 19:04:59 +0000 (19:04 +0000)
committerIan Lynagh <igloo@earth.li>
Fri, 6 Apr 2007 19:04:59 +0000 (19:04 +0000)
libraries/Makefile

index 694adae..e0ecc62 100644 (file)
@@ -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 $@