do not check checksums for tcc-0.9.26 when using tcc_bootstrap_alt

This commit is contained in:
Liam Wilson 2024-01-10 23:30:48 +00:00
parent 2f158fc944
commit 33be2c0080

View file

@ -383,7 +383,7 @@ tcc -ar cr ${LIBDIR}/libgetopt.a getopt.o
cd ../.. cd ../..
# Checksums # Checksums
if match x${UPDATE_CHECKSUMS} xTrue; then if match x${UPDATE_CHECKSUMS}${TCC_BOOTSTRAP_ALT} xTrueFalse; then
sha256sum -o ${pkg}.checksums \ sha256sum -o ${pkg}.checksums \
/usr/bin/tcc-mes \ /usr/bin/tcc-mes \
/usr/bin/tcc-boot0 \ /usr/bin/tcc-boot0 \
@ -397,6 +397,7 @@ if match x${UPDATE_CHECKSUMS} xTrue; then
/usr/lib/mes/tcc/libtcc1.a /usr/lib/mes/tcc/libtcc1.a
cp ${pkg}.checksums ${SRCDIR} cp ${pkg}.checksums ${SRCDIR}
else fi
if match x${UPDATE_CHECKSUMS}${TCC_BOOTSTRAP_ALT} xFalseFalse; then
sha256sum -c ${pkg}.${ARCH}.checksums sha256sum -c ${pkg}.${ARCH}.checksums
fi fi