makepkg: fix double check on same path

Commit 142225fd typo-ed this one, as it should look like the rest of the
checks similar to it.

Signed-off-by: Dan McGee <dan@archlinux.org>
This commit is contained in:
Dan McGee 2009-04-11 13:09:14 -05:00
parent 52d184dae8
commit 101c16b3eb

View file

@ -578,7 +578,7 @@ check_checksums() {
echo -n " $file ... " >&2 echo -n " $file ... " >&2
if [ ! -f "$file" ] ; then if [ ! -f "$file" ] ; then
if [ ! -f "$file" ] ; then if [ ! -f "$SRCDEST/$file" ] ; then
echo "$(gettext "NOT FOUND")" >&2 echo "$(gettext "NOT FOUND")" >&2
errors=1 errors=1
found=0 found=0