diff options
author | Simon Howard | 2011-03-10 19:47:14 +0000 |
---|---|---|
committer | Simon Howard | 2011-03-10 19:47:14 +0000 |
commit | d4e56754210c2b449c3d7a8dc3eb9886d89ff593 (patch) | |
tree | d448dfd30bb8db77243954af07426bdd2c08ff21 /pkg/osx/GNUmakefile | |
parent | 35e27b41d787adca0b4f5c2ec394effb5475301b (diff) | |
download | chocolate-doom-d4e56754210c2b449c3d7a8dc3eb9886d89ff593.tar.gz chocolate-doom-d4e56754210c2b449c3d7a8dc3eb9886d89ff593.tar.bz2 chocolate-doom-d4e56754210c2b449c3d7a8dc3eb9886d89ff593.zip |
Include Unix manpages in MacOS package, and set MANPATH to point to them
when opening a terminal window.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 2302
Diffstat (limited to 'pkg/osx/GNUmakefile')
-rw-r--r-- | pkg/osx/GNUmakefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/pkg/osx/GNUmakefile b/pkg/osx/GNUmakefile index f6fa24ff..f9bb6417 100644 --- a/pkg/osx/GNUmakefile +++ b/pkg/osx/GNUmakefile @@ -73,6 +73,10 @@ $(STAGING_DIR): launcher $(TOPLEVEL_DOCS) find $(STAGING_DIR) -name .svn -delete -exec rm -rf {} \; || true + 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" + clean : launcher_clean rm -f $(DMG) rm -rf $(STAGING_DIR) |