14 lines
226 B
Plaintext
14 lines
226 B
Plaintext
post_install() {
|
|
for qt in mingw32 mingw64; do
|
|
if [ -f "${qt}/bin/qmake.exe" ]; then
|
|
pushd ${qt}/bin > /dev/null
|
|
./qtbinpatcher --verbose --nobackup
|
|
popd > /dev/null
|
|
fi
|
|
done
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install
|
|
}
|