ports/graphics/opendx/files/patch-bin_url_handler.sh
Stephen Montgomery-Smith 772f0568f9 - Remove dependency on GCC.
PR:		ports/213036
Submitted by:	pfg@FreeBSD.org
2016-10-02 17:45:06 +00:00

13 lines
358 B
Bash

--- bin/url_handler.sh.orig 2002-04-10 23:32:54 UTC
+++ bin/url_handler.sh
@@ -39,8 +39,8 @@ case $method in
if [ $use_xbrowser = n ]; then
lynx "$url"
else
- netscape -remote "openURL($url)" 2> /dev/null || \
- (netscape "$url" &)
+ $BROWSER -remote "openURL($url)" 2> /dev/null || \
+ ($BROWSER "$url" &)
fi
;;
esac