aboutsummaryrefslogtreecommitdiffstats
path: root/sysutils
diff options
context:
space:
mode:
authorkuriyama <kuriyama@FreeBSD.org>2001-01-11 09:54:36 +0800
committerkuriyama <kuriyama@FreeBSD.org>2001-01-11 09:54:36 +0800
commitb432ca2975a57690eb4eb1ed76e1d2fdabe9508c (patch)
treec9dfae1f90493366f3aab0c56dcc9eab5cfd1f6f /sysutils
parentd11e78b3b738f8a73afda31e4c061e634c5354c8 (diff)
downloadfreebsd-ports-graphics-b432ca2975a57690eb4eb1ed76e1d2fdabe9508c.tar.gz
freebsd-ports-graphics-b432ca2975a57690eb4eb1ed76e1d2fdabe9508c.tar.zst
freebsd-ports-graphics-b432ca2975a57690eb4eb1ed76e1d2fdabe9508c.zip
Fix argument order of FreeBSD specific configuration.
Diffstat (limited to 'sysutils')
-rw-r--r--sysutils/p5-Schedule-At/files/patch-At.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysutils/p5-Schedule-At/files/patch-At.pm b/sysutils/p5-Schedule-At/files/patch-At.pm
index f74c60475ba..c05d9302b65 100644
--- a/sysutils/p5-Schedule-At/files/patch-At.pm
+++ b/sysutils/p5-Schedule-At/files/patch-At.pm
@@ -23,5 +23,5 @@
+ $AT{'headings'} = ['Date'];
+ $AT{'getCommand'} = 'at -c %JOBID% |';
+ $AT{'parseJobList'} =
-+ sub { my @a = split(/\s+/, $_[0]); ("$a[0] $a[1]", $a[4]) } ;
++ sub { my @a = split(/\s+/, $_[0]); ($a[4], "$a[0] $a[1]") } ;
}