diff options
author | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2006-10-30 16:07:01 +0000 |
---|---|---|
committer | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2006-10-30 16:07:01 +0000 |
commit | 10633afb8d1eb066f97d6a09f8f5ff1fc4630a1e (patch) | |
tree | 65fcc10dad830f86b0fcc0bf7aa295b62faf67b3 | |
parent | fc8a03155ef3ae88909c3340662f7dc1b4d62e63 (diff) | |
download | pandoc-10633afb8d1eb066f97d6a09f8f5ff1fc4630a1e.tar.gz |
osx-pkg target: install into Package_root subdirectory of osx_dest.
git-svn-id: https://pandoc.googlecode.com/svn/trunk@48 788f1e2b-df1e-0410-8736-df70ead52e1b
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -172,7 +172,7 @@ osx-pkg: $(osx_dest) $(osx_dest): $(doc_more) -rm -rf $(osx_dest) $(INSTALL) -d $(osx_dest) - DESTDIR=$(osx_dest) $(MAKE) install-program + DESTDIR=$(osx_dest)/Package_root $(MAKE) install-program find $(osx_dest) -type f -regex ".*bin/.*" | xargs chmod +x find $(osx_dest) -type f -regex ".*bin/$(THIS)" | xargs $(STRIP) $(INSTALL) -d $(osx_dest)/Resources @@ -180,7 +180,7 @@ $(osx_dest): $(doc_more) mv LICENSE.rtf $(osx_dest)/Resources/License.rtf @echo @echo "You may now run PackageMaker.app. For Root, specify" - @echo "$(osx_dest)/Package_Root. The ReadMe.rtf and License.rtf files" + @echo "$(osx_dest)/Package_root. The ReadMe.rtf and License.rtf files" @echo "can be found in $(osx_dest)/Resources." @echo |