From 6833d5249c8e1601e907c9212625e645eed8f907 Mon Sep 17 00:00:00 2001 From: Ella-0 <23418164+Ella-0@users.noreply.github.com> Date: Thu, 24 Jun 2021 21:13:56 +0000 Subject: [PATCH] python: fix traget triple for non x86_64/llvm/musl/linux platforms --- pkgs/python/build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/python/build.sh b/pkgs/python/build.sh index 986738d..9ddfec5 100644 --- a/pkgs/python/build.sh +++ b/pkgs/python/build.sh @@ -13,8 +13,8 @@ build() { cd $pkgname-$pkgver ./configure \ --prefix=/usr \ - --build=x86_64-unknown-linux-musl \ - --host=x86_64-unknown-linux-musl \ + --build=$TARGET \ + --host=$TARGET \ --with-system-ffi=true \ ax_cv_c_float_words_bigendian=no make