diff options
author | tron <tron@pkgsrc.org> | 2001-01-12 23:11:05 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2001-01-12 23:11:05 +0000 |
commit | 96d633fa06cb3abb124414e04425e5bc5d121e78 (patch) | |
tree | 7f0ae127f01c42507a2dda76e76fe9d6d39ce88b /www/ns-remote | |
parent | ab1247594ec516758fe38202866a38e0d94f7f76 (diff) | |
download | pkgsrc-96d633fa06cb3abb124414e04425e5bc5d121e78.tar.gz |
Fix this script for Solaris's "/bin/sh".
Diffstat (limited to 'www/ns-remote')
-rwxr-xr-x | www/ns-remote/files/ns-open | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/www/ns-remote/files/ns-open b/www/ns-remote/files/ns-open index ddfdeb8288a..8510f61eb62 100755 --- a/www/ns-remote/files/ns-open +++ b/www/ns-remote/files/ns-open @@ -1,6 +1,6 @@ #!/bin/sh # -# $NetBSD: ns-open,v 1.3 2000/09/01 16:05:20 abs Exp $ +# $NetBSD: ns-open,v 1.4 2001/01/12 23:11:05 tron Exp $ # # Simple script to open a URL in Netscape, starting a new process if necessary # If a netscape process is not running it will look for a valid netscape @@ -39,7 +39,8 @@ RAISE=-noraise # Check if there are any '-' options which would not be understood by ns-remote # Slightly involved to avoid changing $@ in case we need it for real netscape # -for a ; do +for a +do if [ "$SKIP_ARG" = 1 ];then NS_REMOTE_ARGS="$NS_REMOTE_ARGS $a" SKIP_ARG=0 |