From a486fec3c48d57d48c7d871161c1510be10e0924 Mon Sep 17 00:00:00 2001 From: Chantry Xavier Date: Sun, 17 Jun 2007 18:57:15 +0200 Subject: [PATCH] FS7338: Fix conflicts typo totally this time. The last typo fix for conflicts wasn't complete, it only fixed one occurence of the conflicts variable, instead of the two : http://www.archlinux.org/pipermail/pacman-dev/2007-May/008222.html This caused all conflicts statement to be ignored, so all databases will need to be rebuilt with a fixed repo-add. Signed-off-by: Chantry Xavier --- scripts/repo-add.in | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/scripts/repo-add.in b/scripts/repo-add.in index 1ad468b..3f009af 100644 --- a/scripts/repo-add.in +++ b/scripts/repo-add.in @@ -128,7 +128,7 @@ db_write_entry() license=*) _licenses="$_licenses $license" ;; replaces=*) _replaces="$_replaces $replaces" ;; provides=*) _provides="$_provides $provides" ;; - conflict=*) _conflicts="$_conflicts $conflicts" ;; + conflict=*) _conflicts="$_conflicts $conflict" ;; esac done -- 1.5.2.1