diff options
author | Simon Howard | 2010-01-10 18:48:21 +0000 |
---|---|---|
committer | Simon Howard | 2010-01-10 18:48:21 +0000 |
commit | 7b07b99fa23b112986a6eb54fbec218f7069ef71 (patch) | |
tree | 592735243b1c4ee101df0c49ec3693319b9e9849 | |
parent | da950e23214018c7dc80dff0cb5566ad46bf30cf (diff) | |
download | chocolate-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
-rw-r--r-- | pkg/osx/GNUmakefile | 2 |
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 |