summaryrefslogtreecommitdiff
path: root/pkg
diff options
context:
space:
mode:
authorSimon Howard2010-01-10 18:48:21 +0000
committerSimon Howard2010-01-10 18:48:21 +0000
commit7b07b99fa23b112986a6eb54fbec218f7069ef71 (patch)
tree592735243b1c4ee101df0c49ec3693319b9e9849 /pkg
parentda950e23214018c7dc80dff0cb5566ad46bf30cf (diff)
downloadchocolate-doom-7b07b99fa23b112986a6eb54fbec218f7069ef71.tar.gz
chocolate-doom-7b07b99fa23b112986a6eb54fbec218f7069ef71.tar.bz2
chocolate-doom-7b07b99fa23b112986a6eb54fbec218f7069ef71.zip
Install docs with a single cp, rather than using a for loop.
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 1797
Diffstat (limited to 'pkg')
-rw-r--r--pkg/osx/GNUmakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/osx/GNUmakefile b/pkg/osx/GNUmakefile
index 92fc5b0f..3cab6bf7 100644
--- a/pkg/osx/GNUmakefile
+++ b/pkg/osx/GNUmakefile
@@ -39,7 +39,7 @@ $(STAGING_DIR): launcher $(TOPLEVEL_DOCS)
./cp-with-libs $(TOPLEVEL)/setup/chocolate-setup "$(APP_BIN_DIR)"
$(STRIP) "$(APP_BIN_DIR)/chocolate-setup"
- for d in $(DOC_FILES); do cp $(TOPLEVEL)/$$d $(STAGING_DIR)/; done
+ cp $(TOPLEVEL_DOCS) "$(STAGING_DIR)"
find $(STAGING_DIR) -name .svn -delete -exec rm -rf {} \; || true