summaryrefslogtreecommitdiff
path: root/www
diff options
context:
space:
mode:
authorabs <abs@pkgsrc.org>2002-03-11 10:18:25 +0000
committerabs <abs@pkgsrc.org>2002-03-11 10:18:25 +0000
commit3f37449330e15170106c6f83c4be670b0657a9b6 (patch)
treea2c059d128401d7c78a21799a9e16fdc43b4ac18 /www
parent2f6457756aa43b453ef87f2f15860bf3ec20f7ce (diff)
downloadpkgsrc-3f37449330e15170106c6f83c4be670b0657a9b6.tar.gz
correctly quote $@
Diffstat (limited to 'www')
-rw-r--r--www/galeon/files/galeon.in2
-rw-r--r--www/netscape/files/netscape_mozilla4
-rw-r--r--www/netscape/files/netscape_navigator4
-rwxr-xr-xwww/ns-remote/files/ns-open6
4 files changed, 8 insertions, 8 deletions
diff --git a/www/galeon/files/galeon.in b/www/galeon/files/galeon.in
index b31686cb3ab..10d6cc96672 100644
--- a/www/galeon/files/galeon.in
+++ b/www/galeon/files/galeon.in
@@ -1,4 +1,4 @@
#!/bin/sh
MOZILLA_FIVE_HOME=@PREFIX@/lib/mozilla
export MOZILLA_FIVE_HOME
-exec @PREFIX@/bin/galeon-bin $@
+exec @PREFIX@/bin/galeon-bin "$@"
diff --git a/www/netscape/files/netscape_mozilla b/www/netscape/files/netscape_mozilla
index ff087ca1e1d..5d8ce18a066 100644
--- a/www/netscape/files/netscape_mozilla
+++ b/www/netscape/files/netscape_mozilla
@@ -1,9 +1,9 @@
#!/bin/sh
-# $NetBSD: netscape_mozilla,v 1.1 2001/07/27 14:26:18 abs Exp $
+# $NetBSD: netscape_mozilla,v 1.2 2002/03/11 10:18:25 abs Exp $
# Simple script used if NS_MOZILLA is set when netscape installed
if [ -z "$NETSCAPE_PREFERRED" ]; then
NETSCAPE_PREFERRED=mozilla:navigator:communicator
fi
-exec ns-open $@
+exec ns-open "$@"
diff --git a/www/netscape/files/netscape_navigator b/www/netscape/files/netscape_navigator
index e4ea581b4ab..a3eef5d7a87 100644
--- a/www/netscape/files/netscape_navigator
+++ b/www/netscape/files/netscape_navigator
@@ -1,9 +1,9 @@
#!/bin/sh
-# $NetBSD: netscape_navigator,v 1.2 2001/07/27 14:26:18 abs Exp $
+# $NetBSD: netscape_navigator,v 1.3 2002/03/11 10:18:25 abs Exp $
# Simple script used if NS_NAVIGATOR is set when netscape installed
if [ -z "$NETSCAPE_PREFERRED" ]; then
NETSCAPE_PREFERRED=navigator:communicator:mozilla
fi
-exec ns-open $@
+exec ns-open "$@"
diff --git a/www/ns-remote/files/ns-open b/www/ns-remote/files/ns-open
index 26d155d0c3a..46ce6345afd 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.6 2001/12/22 14:43:20 abs Exp $
+# $NetBSD: ns-open,v 1.7 2002/03/11 10:18:25 abs 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
@@ -94,12 +94,12 @@ if [ -z "$NETSCAPE_BIN" ];then
fi
case $1 in
-*)
- $NETSCAPE_BIN $@
+ $NETSCAPE_BIN "$@"
;;
*)
# Since using ns-remote will return, we start netscape in the
# background to give consistent behaviour.
- $NETSCAPE_BIN $@ &
+ $NETSCAPE_BIN "$@" &
;;
esac
exit 0