From b7bc6836d18ad5c0fb63d3387046031f6685c964 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Buchm=C3=BCller?= Date: Thu, 4 Jan 2018 15:22:34 +0100 Subject: [PATCH] gst1-python3: make sure python3 is used According to @jnbr this change should fix the package which erroneously seems to detect python2 when being configured. Closes: #10432 --- srcpkgs/gst1-python3/template | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/srcpkgs/gst1-python3/template b/srcpkgs/gst1-python3/template index 6761ffdc329..e5f9855d1e4 100644 --- a/srcpkgs/gst1-python3/template +++ b/srcpkgs/gst1-python3/template @@ -1,7 +1,7 @@ # Template file for 'gst1-python3' pkgname=gst1-python3 version=1.12.4 -revision=2 +revision=3 wrksrc="gst-python-${version}" build_style=gnu-configure configure_args="--disable-static" @@ -15,3 +15,7 @@ license="LGPL-2.1" homepage="https://gstreamer.freedesktop.org" distfiles="${homepage}/src/gst-python/gst-python-${version}.tar.xz" checksum=20ce6af6615c9a440c1928c31259a78226516d06bf1a65f888c6d109826fa3ea + +pre_configure() { + export PYTHON=/usr/bin/python3 +}