logo

live-bootstrap

Mirror of <https://github.com/fosslinux/live-bootstrap>

multiarch.patch (630B)


  1. SPDX-FileCopyrightText: 2022 fosslinux <fosslinux@aussies.space>
  2. SPDX-License-Identifier: PSF-2.0
  3. On x86_64 system our GCC has multiarch a little broken for Python's
  4. build system which doesn't really bother me so just pretend that
  5. there is no multiarch.
  6. --- Python-3.11.1/configure.ac.bak 2022-12-21 19:35:44.560977616 +1100
  7. +++ Python-3.11.1/configure.ac 2022-12-21 19:36:00.735143246 +1100
  8. @@ -1096,7 +1096,7 @@
  9. AS_CASE([$ac_sys_system],
  10. [Darwin*], [MULTIARCH=""],
  11. [FreeBSD*], [MULTIARCH=""],
  12. - [MULTIARCH=$($CC --print-multiarch 2>/dev/null)]
  13. + [MULTIARCH=""]
  14. )
  15. AC_SUBST([MULTIARCH])
  16. AC_MSG_RESULT([$MULTIARCH])