diff options
author | yar <yar@FreeBSD.org> | 2001-05-21 17:45:22 +0800 |
---|---|---|
committer | yar <yar@FreeBSD.org> | 2001-05-21 17:45:22 +0800 |
commit | 6c228604f1c2ecf3017bca6c529278c7bccc3c5b (patch) | |
tree | 1193224ac852f0fdd8e515e10ba4b60a044362f5 | |
parent | 9d6db7756b3522383e26c55310e25329c3ab661e (diff) | |
download | freebsd-ports-gnome-6c228604f1c2ecf3017bca6c529278c7bccc3c5b.tar.gz freebsd-ports-gnome-6c228604f1c2ecf3017bca6c529278c7bccc3c5b.tar.zst freebsd-ports-gnome-6c228604f1c2ecf3017bca6c529278c7bccc3c5b.zip |
Make the wrapper script whitespace-safe: Change $* to "$@".
Fixing by myself because there has been no responce from MAINTAINER
for over two months.
PR: ports/25880
-rw-r--r-- | russian/rus-ispell/files/ispell-ru.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/russian/rus-ispell/files/ispell-ru.sh b/russian/rus-ispell/files/ispell-ru.sh index 1365a904aee7..151b10630f40 100644 --- a/russian/rus-ispell/files/ispell-ru.sh +++ b/russian/rus-ispell/files/ispell-ru.sh @@ -1,3 +1,3 @@ #!/bin/sh -exec ispell -d russian $* +exec ispell -d russian "$@" |