-
-
Notifications
You must be signed in to change notification settings - Fork 14.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d579747
commit 49182bc
Showing
2 changed files
with
42 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
diff --git a/include/Make/Install.make b/include/Make/Install.make | ||
index 0aba138..8ba74bc 100644 | ||
--- a/include/Make/Install.make | ||
+++ b/include/Make/Install.make | ||
@@ -116,11 +116,6 @@ real-install: | $(INST_DIR) $(UNIX_BIN) | ||
-$(INSTALL) config.status $(INST_DIR)/config.status | ||
-$(CHMOD) -R a+rX $(INST_DIR) 2>/dev/null | ||
|
||
-ifneq ($(findstring darwin,$(ARCH)),) | ||
- @# enable OSX Help Viewer | ||
- @/bin/ln -sfh "$(INST_DIR)/docs/html" /Library/Documentation/Help/GRASS-$(GRASS_VERSION_MAJOR).$(GRASS_VERSION_MINOR) | ||
-endif | ||
- | ||
$(INST_DIR) $(UNIX_BIN): | ||
$(MAKE_DIR_CMD) $@ | ||
|
||
diff --git a/macosx/app/build_html_user_index.sh b/macosx/app/build_html_user_index.sh | ||
index 04e63eb..c9d9c2c 100755 | ||
--- a/macosx/app/build_html_user_index.sh | ||
+++ b/macosx/app/build_html_user_index.sh | ||
@@ -140,7 +140,6 @@ else | ||
# echo "<tr><td valign=\"top\"><a href=\"$HTMLDIRG/$i\">$BASENAME</a></td> <td>$SHORTDESC</td></tr>" >> $FULLINDEX | ||
# make them local to user to simplify page links | ||
echo "<tr><td valign=\"top\"><a href=\"global_$i\">$BASENAME</a></td> <td>$SHORTDESC</td></tr>" >> $FULLINDEX | ||
- ln -sf "$HTMLDIRG/$i" global_$i | ||
done | ||
done | ||
fi | ||
@@ -183,8 +182,3 @@ echo "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0 Transitional//EN\"> | ||
</html>" > $i.html | ||
done | ||
|
||
-# add Help Viewer links in user docs folder | ||
- | ||
-mkdir -p $HOME/Library/Documentation/Help/ | ||
-ln -sfh ../../GRASS/$GRASS_MMVER/Modules/docs/html $HOME/Library/Documentation/Help/GRASS-$GRASS_MMVER-addon | ||
-ln -sfh $GISBASE/docs/html $HOME/Library/Documentation/Help/GRASS-$GRASS_MMVER |