diff options
author | dougb <dougb@FreeBSD.org> | 2012-08-06 08:28:43 +0800 |
---|---|---|
committer | dougb <dougb@FreeBSD.org> | 2012-08-06 08:28:43 +0800 |
commit | 3fd63179eab3aabf71acde27ce919609051b200d (patch) | |
tree | 064a3b25bd22f00aecb92267a8a37b3b2bcc0446 /dns | |
parent | f0d9f58b7f1825fb95236f427a6400ad54ad4b5e (diff) | |
download | freebsd-ports-gnome-3fd63179eab3aabf71acde27ce919609051b200d.tar.gz freebsd-ports-gnome-3fd63179eab3aabf71acde27ce919609051b200d.tar.zst freebsd-ports-gnome-3fd63179eab3aabf71acde27ce919609051b200d.zip |
Fix what looks like a copy-paste-o that originated in the same script:
command=foo >/dev/null 2>&1
|
v
command=foo
command_args='>/dev/null 2>&1'
This is clearly what should have been done, for several reasons.
No PORTREVISION bump because the old version simply ignored everything
after the space, and does not seem to have done any harm. However
it's good to clean these up so that similar errors aren't pasted into
a new script where they might actually matter.
Diffstat (limited to 'dns')
-rw-r--r-- | dns/bindgraph/files/bindgraph.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/dns/bindgraph/files/bindgraph.in b/dns/bindgraph/files/bindgraph.in index 62b0fd34d204..42f4f4315bf2 100644 --- a/dns/bindgraph/files/bindgraph.in +++ b/dns/bindgraph/files/bindgraph.in @@ -15,7 +15,8 @@ name="bindgraph" rcvar=bindgraph_enable -command=%%PREFIX%%/sbin/${name}.pl > /dev/null 2>&1 +command=%%PREFIX%%/sbin/${name}.pl +command_args='> /dev/null 2>&1' command_interpreter=/usr/bin/perl stop_postcmd=stop_postcmd |