diff options
author | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2007-01-01 21:34:50 +0000 |
---|---|---|
committer | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2007-01-01 21:34:50 +0000 |
commit | b9a348338b4c3052e3076f22f388becad1e92542 (patch) | |
tree | d55fb56c37d7d96cc6ad5a242543631110cdd199 | |
parent | c27d8adc78629749c447a55ea90647505905706d (diff) | |
download | pandoc-b9a348338b4c3052e3076f22f388becad1e92542.tar.gz |
Inserted a needed slash in the Makefile, after $(osx_pkg_name),
which is the name of a directory!
git-svn-id: https://pandoc.googlecode.com/svn/trunk@391 788f1e2b-df1e-0410-8736-df70ead52e1b
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -253,7 +253,7 @@ $(osx_dest)/: build-program $(doc_more) sed -e 's/@VERSION@/$(VERSION)/g' $(osx_src)/Info.plist > $(osx_dest)/Info.plist cp $(osx_src)/Description.plist $(osx_dest)/ osx-pkg: $(osx_pkg_name) -$(osx_pkg_name): $(osx_dest) +$(osx_pkg_name)/: $(osx_dest) if [ "`id -u`" != 0 ]; then \ echo "Root permissions needed to create OSX package!"; \ exit 1; \ |