diff options
author | Baptiste Jonglez | 2015-08-24 12:56:36 +0200 |
---|---|---|
committer | Baptiste Jonglez | 2015-08-24 13:02:17 +0200 |
commit | d752fead3b243c3bf550693e0ca41947cfdcca4d (patch) | |
tree | 508e1953027fe0edbc783adfbbc9f1f8ec99e287 | |
parent | ffee7e8b97f41086c6fe92a016f13972630b7ab3 (diff) | |
download | aur-d752fead3b243c3bf550693e0ca41947cfdcca4d.tar.gz |
opendht-git: Disable python bindings, because they do not build
-rw-r--r-- | PKGBUILD | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -24,6 +24,8 @@ build() { msg2 'Building...' ./autogen.sh + # Python bindings are disabled as of 2015-08-24 because they don't + # build. See https://github.com/savoirfairelinux/opendht/issues/15 ./configure \ --prefix=/usr \ --sbindir=/usr/bin \ @@ -31,7 +33,8 @@ build() { --sysconfdir=/etc \ --sharedstatedir=/usr/share/opendht \ --localstatedir=/var/lib/opendht \ - --with-gnu-ld + --with-gnu-ld \ + --disable-python make } |