df5771e3cd
- Solaris 7 sh doesn't understand "export beer=good" syntax, so split into separate lines - from Abel Chow in pkg/34619
10 lines
267 B
Bash
10 lines
267 B
Bash
#!/bin/sh
|
|
# $NetBSD: netscape,v 1.2 2006/09/29 22:12:51 abs Exp $
|
|
|
|
# Simple script used if NS_MOZILLA is set when netscape installed
|
|
|
|
if [ -z "$NETSCAPE_PREFERRED" ]; then
|
|
NETSCAPE_PREFERRED=@NETSCAPE_PREFERRED@
|
|
export NETSCAPE_PREFERRED
|
|
fi
|
|
exec ns-open "$@"
|