Signed-off-by: Pierre Neidhardt <[email protected]>
---
contrib/pacsearch.in | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/contrib/pacsearch.in b/contrib/pacsearch.in
index d1a19d6..e16b78a 100644
--- a/contrib/pacsearch.in
+++ b/contrib/pacsearch.in
@@ -136,8 +136,9 @@ if ($#querypkgs >= 0) {
}
foreach $_ (@querypkgs) {
- # we grab the following fields: repo, name, ver, group, installed, and
desc
- my @pkgfields = /^(.*?)\/(.*?) (.*?) ?(\(.*?\))? ?(\[.*\])?\n(.*)$/s;
+ # We grab the same field as before, even the "installed" which is always
+ # empty for local searches. This allows us to reserve a cell in
@pkgfields.
+ my @pkgfields = /^(.*?)\/(.*?) (.*?) ?(\(.*?\))?()?\n(.*)$/s;
# skip any non-matching line
next if not defined $pkgfields[1];
# check if the package was listed in the sync out
--
1.8.5.3