diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2008-11-23 14:01:15 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2008-11-23 14:01:15 +0000 |
commit | 1955db8e57ef2d7aa071d1ff9d6c79d78c8afd55 (patch) | |
tree | de1c6651f69657480d500dbeba0485891854b901 | |
parent | 35ab1e9b9b02a1d83c3b80eda3371d192e1e9e48 (diff) | |
download | abuild-1955db8e57ef2d7aa071d1ff9d6c79d78c8afd55.tar.gz abuild-1955db8e57ef2d7aa071d1ff9d6c79d78c8afd55.tar.bz2 abuild-1955db8e57ef2d7aa071d1ff9d6c79d78c8afd55.tar.xz abuild-1955db8e57ef2d7aa071d1ff9d6c79d78c8afd55.zip |
run md5sum creation from $srcdir rather than $SRCDEST
-rwxr-xr-x | abuild | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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\"" } |