diff options
author | kuriyama <kuriyama@FreeBSD.org> | 2001-01-11 01:54:36 +0000 |
---|---|---|
committer | kuriyama <kuriyama@FreeBSD.org> | 2001-01-11 01:54:36 +0000 |
commit | b432ca2975a57690eb4eb1ed76e1d2fdabe9508c (patch) | |
tree | c9dfae1f90493366f3aab0c56dcc9eab5cfd1f6f /sysutils/p5-Schedule-At | |
parent | d11e78b3b738f8a73afda31e4c061e634c5354c8 (diff) | |
download | FreeBSD-ports-b432ca2975a57690eb4eb1ed76e1d2fdabe9508c.zip FreeBSD-ports-b432ca2975a57690eb4eb1ed76e1d2fdabe9508c.tar.gz |
Fix argument order of FreeBSD specific configuration.
Diffstat (limited to 'sysutils/p5-Schedule-At')
-rw-r--r-- | sysutils/p5-Schedule-At/files/patch-At.pm | 2 |
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 f74c604..c05d930 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]") } ; } |