00-distfiles: fix hard link existence test

This commit is contained in:
jbu 2015-07-06 21:34:52 +02:00
parent 109e158075
commit d6fb3784dd
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ verify_cksum() {
msg_red "SHA256 mismatch for '$curfile:'\n$filesum\n"
errors=$(($errors + 1))
else
if [ ! -f "$XBPS_SRCDISTDIR/by_sha256/$cksum" ]; then
if [ ! -f "$XBPS_SRCDISTDIR/by_sha256/${cksum}_${curfile}" ]; then
mkdir -p "$XBPS_SRCDISTDIR/by_sha256"
ln -f "$distfile" "$XBPS_SRCDISTDIR/by_sha256/${cksum}_${curfile}"
fi