summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorChantry Xavier <shiningxc@gmail.com>2007-06-17 18:57:15 +0200
committerChantry Xavier <shiningxc@gmail.com>2007-06-17 18:57:15 +0200
commita486fec3c48d57d48c7d871161c1510be10e0924 (patch)
tree257e2fbdb8fbc6badedfad2e149ffd6a256f0808 /scripts
parent7bd4486ebd15ba9cca0ee3e6a2c2ddc88ff104dc (diff)
downloadpacman-a486fec3c48d57d48c7d871161c1510be10e0924.tar.gz
pacman-a486fec3c48d57d48c7d871161c1510be10e0924.tar.xz
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 <shiningxc@gmail.com>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/repo-add.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/repo-add.in b/scripts/repo-add.in
index 1ad468b2..3f009af8 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