[banshee] [build] use cp -rf instead of cp -a



commit 75584205b4d619341cb7ffb24c3973ece1f994b1
Author: Aaron Bockover <abockover novell com>
Date:   Tue Jan 5 19:27:11 2010 -0500

    [build] use cp -rf instead of cp -a
    
    OS X 10.5 does not support the -a option on cp

 Makefile.am |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/Makefile.am b/Makefile.am
index 16e612b..0561fa8 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -41,7 +41,7 @@ MO_FILES = $(patsubst po/%.gmo, $(LC_BUILD)/%/LC_MESSAGES/$(PACKAGE).mo, $(PO_FI
 
 $(MO_FILES): $(LC_BUILD)/%/LC_MESSAGES/$(PACKAGE).mo: po/%.gmo
 	$(mkdir_p) $(dir $@)
-	cp -af '$<' '$@'
+	cp -rf '$<' '$@'
 
 run: $(MO_FILES)
 	(cd bin; $(MONO) --debug $(BANSHEE_DEV_MONO_OPTIONS) Nereid.exe --debug --uninstalled $(BANSHEE_DEV_OPTIONS))



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]