git » pyqt5.git » commit a0dbb7c

Fix missing symbol in dbus module (FS#64831)

author Antonio Rojas
2019-12-14 08:25:52 UTC
committer Antonio Rojas
2019-12-14 08:25:52 UTC
parent 4f60c6b3d0fadf3141006dac616802846e131572

Fix missing symbol in dbus module (FS#64831)

PKGBUILD +4 -3

diff --git a/PKGBUILD b/PKGBUILD
index 4d0c8db..af5e359 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -8,7 +8,7 @@
 pkgbase=pyqt5
 pkgname=('python-pyqt5' 'python2-pyqt5')
 pkgver=5.13.2
-pkgrel=7
+pkgrel=8
 arch=('x86_64')
 url="https://riverbankcomputing.com/software/pyqt/intro"
 license=('GPL')
@@ -32,8 +32,9 @@ build() {
   sip-build \
     --confirm-license \
     --no-make
-   cd build
-   make
+  cd build
+  sed -e 's|dbus|pyqt5|' -i dbus/dbus.exp # Fix missing symbol on dbus module
+  make
 
   cd "$srcdir"/PyQt5-$pkgver-py2
   python2 configure.py \