repo-add: fix conflicts instead of conflict bug

makepkg generates PKGINFO files with "conflict = ", repo-add was
incorrectly looking for "conflicts = ".

Signed-off-by: Dan McGee <dan@archlinux.org>
This commit is contained in:
Dan McGee 2007-05-06 18:55:26 -04:00
parent 96f35d219c
commit 01bc7d7749
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ db_write_entry()
license=*) _licenses="$_licenses $license" ;;
replaces=*) _replaces="$_replaces $replaces" ;;
provides=*) _provides="$_provides $provides" ;;
conflicts=*) _conflicts="$_conflicts $conflicts" ;;
conflict=*) _conflicts="$_conflicts $conflicts" ;;
esac
done