fbd88209b8
The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/harfbuzz#e98a33a89e52dcedd02790fc26551ffc27824a1e
10 lines
351 B
Bash
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---"
|