1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-25 04:43:33 +00:00

Fix argument order of FreeBSD specific configuration.

This commit is contained in:
Jun Kuriyama 2001-01-11 01:54:36 +00:00
parent 60aa694e5f
commit 832998939f
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=37086

View File

@ -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]") } ;
}