diff options
author | B. Watson <urchlay@slackware.uk> | 2023-08-11 15:29:55 -0400 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2023-08-12 08:29:56 +0700 |
commit | fe6df4dbb93967010b96a311aa7c2571ca27c223 (patch) | |
tree | ee07fe129892482768bf10b5e21d0fadda125168 /system | |
parent | cef5f9a77d4ed64cb89d8855f3f458018188f88a (diff) |
system/android-file-transfer: Fix conflict with pybind11.
Signed-off-by: B. Watson <urchlay@slackware.uk>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system')
-rw-r--r-- | system/android-file-transfer/android-file-transfer.SlackBuild | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/system/android-file-transfer/android-file-transfer.SlackBuild b/system/android-file-transfer/android-file-transfer.SlackBuild index 673472c71583..1097b6752009 100644 --- a/system/android-file-transfer/android-file-transfer.SlackBuild +++ b/system/android-file-transfer/android-file-transfer.SlackBuild @@ -22,6 +22,11 @@ # OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# 20230811 bkw: Modified by SlackBuilds.org: stop trying to build the +# Python module. This uses Python 2, and tries to build the Python +# module if pybind11 is installed... but our pybind11 no longer +# supports Python 2, so the build fails. + # 20220211 bkw: Modified by SlackBuilds.org: use the correct github # download URL, get rid of the useless static lib in the package, add # a doinst.sh for the desktop/icon stuff. @@ -94,6 +99,7 @@ cd build -DCMAKE_INSTALL_PREFIX=/usr \ -DLIB_SUFFIX=${LIBDIRSUFFIX} \ -DBUILD_QT_UI=$GUI \ + -DBUILD_PYTHON=OFF \ -DCMAKE_BUILD_TYPE=Release .. make make install/strip DESTDIR=$PKG |