From 005a864c98428dd3789d6f44018ef9f7235ae8f1 Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Sat, 5 Sep 2009 18:52:39 +0000 Subject: [PATCH] cp -a is GNU only ... git-svn-id: http://svg-edit.googlecode.com/svn/trunk@597 eee81c28-f429-11dd-99c0-75d572ba1ddd --- Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index b68da1d0..901618b0 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,7 @@ all: release firefox opera build/$(PACKAGE): mkdir -p build/$(PACKAGE) - cp -ra editor/* build/$(PACKAGE) + cp -r editor/* build/$(PACKAGE) -find build/$(PACKAGE) -name .svn -type d -exec rm -rf {} \; # minify spin button java -jar $(YUI) build/$(PACKAGE)/spinbtn/JQuerySpinBtn.js > build/$(PACKAGE)/spinbtn/JQuerySpinBtn.min.js @@ -24,15 +24,15 @@ release: build/$(PACKAGE) firefox: build/$(PACKAGE) mkdir -p build/firefox/content/editor - cp -a firefox-extension/* build/firefox + cp -r firefox-extension/* build/firefox rm -rf build/firefox/content/.svn - cp -ra build/$(PACKAGE)/* build/firefox/content/editor + cp -r build/$(PACKAGE)/* build/firefox/content/editor cd build/firefox ; $(ZIP) ../$(PACKAGE).xpi -r * ; cd ../.. opera: build/$(PACKAGE) mkdir -p build/opera/editor - cp -a opera-widget/* build/opera - cp -ra build/$(PACKAGE)/* build/opera/editor + cp opera-widget/* build/opera + cp -r build/$(PACKAGE)/* build/opera/editor cd build/opera ; $(ZIP) ../$(PACKAGE).wgt -r * ; cd ../.. clean: