harfbuzz/tests/smoke/runtest.sh
Petr Šabata fbd88209b8 RHEL 9.0.0 Alpha bootstrap
The content of this branch was automatically imported from Fedora ELN
with the following as its source:
https://src.fedoraproject.org/rpms/harfbuzz#e98a33a89e52dcedd02790fc26551ffc27824a1e
2020-10-15 12:20:53 +02:00

10 lines
351 B
Bash

#!/bin/bash
cd ../source
echo "---Start autogen.sh---"
NOCONFIGURE=1 ./autogen.sh
echo "---End autogen.sh---"
echo "--------------------"
find . -type f -exec sed -i 's/env python/python3/g' {} \; && ./configure --disable-static --with-graphite2 && echo "--------------------"; echo "---Start make check---"; make check; echo "---End make check---"