diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2013-10-04 13:28:11 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-10-04 13:28:11 -0700 |
commit | 64c6a4278aedda3e0c435eb4df108817c85c1237 (patch) | |
tree | 7fbe71ba4e927df8e2359632b26c3f8e76b93df7 | |
parent | f8708e2921d116890fa0bac1d46d3b464ca08218 (diff) | |
download | subsurface-64c6a4278aedda3e0c435eb4df108817c85c1237.tar.gz |
Install xslt under share on Mac
This is more consistent with Linux and is what's expected with the recent
change to how xslt files are found.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r-- | Rules.mk | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -110,8 +110,8 @@ install-macosx: all $(INSTALL) $$LOC/$(NAME).mo $(MACOSXINSTALL)/Contents/Resources/$$LOC/$(NAME).mo; \ done @-if test ! -z "$(XSLT)"; then \ - $(INSTALL) -d -m 755 $(MACOSXINSTALL)/Contents/Resources/xslt; \ - $(INSTALL) -m 644 $(XSLTFILES) $(MACOSXINSTALL)/Contents/Resources/xslt/; \ + $(INSTALL) -d -m 755 $(MACOSXINSTALL)/Contents/Resources/share/xslt; \ + $(INSTALL) -m 644 $(XSLTFILES) $(MACOSXINSTALL)/Contents/Resources/share/xslt/; \ fi $(INSTALL) -d -m 755 $(MACOSXINSTALL)/Contents/resources/share/doc/$(NAME) $(INSTALL) -m 644 Documentation/user-manual.html $(MACOSXINSTALL)/Contents/Resources/share/doc/$(NAME) |