Skip to content

Commit 6c86433

Browse files
committed
added crypto support, this fixes bdmissing
1 parent fdcf77c commit 6c86433

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

bindist/bdlist

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,15 @@ else
3535
sed -e 's,.*/,,' -e 's,_darwin-powerpc.deb,,' | sort
3636
fi
3737

38+
basecryptodir="dists/$tree/crypto/binary-darwin-powerpc"
39+
if [ ! -d "$basecryptodir" ]; then
40+
echo "ERROR: no binary directory for $tree/crypto"
41+
elif [ $showall -eq 1 ]; then
42+
find "$basecryptodir" -name \*.deb -print | \
43+
sed -e 's,.*/,,' -e 's,_darwin-powerpc.deb,,' | sort
44+
else
45+
find "$basecryptodir" -type f -and -name \*.deb -print | \
46+
sed -e 's,.*/,,' -e 's,_darwin-powerpc.deb,,' | sort
47+
fi
48+
3849
exit 0

0 commit comments

Comments
 (0)