From 6914ffca700f78e1dcc7ec7aecd6a02c5c8d193d Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Tue, 6 Jul 2021 20:29:04 +0200 Subject: [PATCH] python3: force ac_cv_working_tzset=yes. The check for it fails by default when cross-compiling, which results in missing time.tzset. --- srcpkgs/python3/template | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3/template b/srcpkgs/python3/template index f1e79ba3a1..7956bcf736 100644 --- a/srcpkgs/python3/template +++ b/srcpkgs/python3/template @@ -4,7 +4,7 @@ # pkgname=python3 version=3.9.6 -revision=1 +revision=2 wrksrc="Python-${version}" pycompile_dirs="usr/lib/python${version%.*}" hostmakedepends="pkgconf" @@ -49,7 +49,8 @@ do_configure() { ./configure ${configure_args} ${_args} \ --enable-shared --enable-ipv6 --enable-loadable-sqlite-extensions \ --with-computed-gotos --with-dbmliborder=gdbm:ndbm \ - --with-system-expat --with-system-ffi --without-ensurepip + --with-system-expat --with-system-ffi --without-ensurepip \ + ac_cv_working_tzset=yes } do_build() {