blob: c4203a06c7ed17278624e21f016235f4bf0f4fdb (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/bash
set -e
PKG_BUILD_DIR="$1"
# SIP uses PyLong_FromUnsignedLong to convert from void * to
# PyLong. This results in a compilation error for the implicit cast
# on C++ compilers. Make an explicit cast.
sed -i -e 's/PyLong_FromUnsignedLong(/PyLong_FromUnsignedLong((unsigned long)/g' $PKG_BUILD_DIR/QtCore/sipQtCoreQThread.cpp
|