diff options
author | Dan McGee <dan@archlinux.org> | 2009-04-11 20:09:14 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2009-04-11 20:30:38 +0200 |
commit | 101c16b3eb8048dffd1c6c4438e84b759d2e2aff (patch) | |
tree | 8070aa5b6bdad6b358a19457eaeae5b4e52508fd /scripts | |
parent | 52d184dae82dbcfe265683dac04ff1c7b0e5be74 (diff) | |
download | pacman-101c16b3eb8048dffd1c6c4438e84b759d2e2aff.tar.gz pacman-101c16b3eb8048dffd1c6c4438e84b759d2e2aff.tar.xz |
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>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/makepkg.sh.in | 2 |
1 files changed, 1 insertions, 1 deletions
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 |