diff options
author | Simon Howard | 2013-09-15 23:22:06 +0000 |
---|---|---|
committer | Simon Howard | 2013-09-15 23:22:06 +0000 |
commit | a1e79a3ba1c5f24c322e09278660ef03a0e0f1f4 (patch) | |
tree | ac585f032f9ce42557ae933ba3eba9fb465e8819 | |
parent | 3cd3810c38b25dcbfa3df49a4ce3c23b94582b29 (diff) | |
download | chocolate-doom-a1e79a3ba1c5f24c322e09278660ef03a0e0f1f4.tar.gz chocolate-doom-a1e79a3ba1c5f24c322e09278660ef03a0e0f1f4.tar.bz2 chocolate-doom-a1e79a3ba1c5f24c322e09278660ef03a0e0f1f4.zip |
Fix copying of CMDLINE files for Mac package build.
Subversion-branch: /branches/v2-branch
Subversion-revision: 2654
-rw-r--r-- | pkg/osx/GNUmakefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/pkg/osx/GNUmakefile b/pkg/osx/GNUmakefile index f1cdbb11..4a0da504 100644 --- a/pkg/osx/GNUmakefile +++ b/pkg/osx/GNUmakefile @@ -99,7 +99,9 @@ $(STAGING_DIR): launcher $(TOPLEVEL_DOCS) mkdir -p "$(APP_BIN_DIR)/man/man5" "$(APP_BIN_DIR)/man/man6" cp $(TOPLEVEL)/man/*.5 "$(APP_BIN_DIR)/man/man5" cp $(TOPLEVEL)/man/*.6 "$(APP_BIN_DIR)/man/man6" - cp $(TOPLEVEL)/man/CMDLINE.{doom,heretic,hexen,strife} $(APP_DOC_DIR) + cp $(TOPLEVEL)/man/CMDLINE.doom $(TOPLEVEL)/man/CMDLINE.heretic \ + $(TOPLEVEL)/man/CMDLINE.hexen $(TOPLEVEL)/man/CMDLINE.strife \ + "$(APP_DOC_DIR)" cp disk/dir.DS_Store $(STAGING_DIR)/.DS_Store cp disk/background.png $(STAGING_DIR)/background.png |