summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2008-11-23 14:01:15 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2008-11-23 14:01:15 +0000
commit1955db8e57ef2d7aa071d1ff9d6c79d78c8afd55 (patch)
treede1c6651f69657480d500dbeba0485891854b901
parent35ab1e9b9b02a1d83c3b80eda3371d192e1e9e48 (diff)
downloadabuild-1955db8e57ef2d7aa071d1ff9d6c79d78c8afd55.tar.bz2
abuild-1955db8e57ef2d7aa071d1ff9d6c79d78c8afd55.tar.xz
run md5sum creation from $srcdir rather than $SRCDEST
-rwxr-xr-xabuild2
1 files changed, 1 insertions, 1 deletions
diff --git a/abuild b/abuild
index 35fd6f9..02196f0 100755
--- a/abuild
+++ b/abuild
@@ -458,7 +458,7 @@ checksum() {
for s in $source; do
files="$files ${s##*/}"
done
- md5sums="$(cd "$SRCDEST" && md5sum $files)" || die "md5sum failed"
+ md5sums="$(cd "$srcdir" && md5sum $files)" || die "md5sum failed"
echo "md5sums=\"$md5sums\""
}