From 101c16b3eb8048dffd1c6c4438e84b759d2e2aff Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Sat, 11 Apr 2009 13:09:14 -0500 Subject: 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 --- scripts/makepkg.sh.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts') diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in index 9ff70f6e..3070c66e 100644 --- a/scripts/makepkg.sh.in +++ b/scripts/makepkg.sh.in @@ -578,7 +578,7 @@ check_checksums() { echo -n " $file ... " >&2 if [ ! -f "$file" ] ; then - if [ ! -f "$file" ] ; then + if [ ! -f "$SRCDEST/$file" ] ; then echo "$(gettext "NOT FOUND")" >&2 errors=1 found=0 -- cgit v1.2.3