commit 7b07b99fa23b112986a6eb54fbec218f7069ef71
Author: Simon Howard <fraggle@gmail.com>
AuthorDate: Sun Jan 10 18:48:21 2010 +0000
Commit: Simon Howard <fraggle@gmail.com>
CommitDate: Sun Jan 10 18:48:21 2010 +0000
Install docs with a single cp, rather than using a for loop.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1797
---
pkg/osx/GNUmakefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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