From fc1ccb3710acd9a04794880658c75c3fbdedf6b0 Mon Sep 17 00:00:00 2001 From: heitbaum Date: Fri, 6 Aug 2021 22:51:34 +1000 Subject: [PATCH] glibc: dont run aclocal and autoconf on target build required to address following error: aclocal.m4:6: error: Exactly version 2.69 of Autoconf is required but you have 2.71 aclocal.m4:6: the top level autom4te: error: toolchain/bin/m4 failed with exit status: 63 --- packages/devel/glibc/package.mk | 7 ------- 1 file changed, 7 deletions(-) diff --git a/packages/devel/glibc/package.mk b/packages/devel/glibc/package.mk index f199012986..26b24d742a 100644 --- a/packages/devel/glibc/package.mk +++ b/packages/devel/glibc/package.mk @@ -45,13 +45,6 @@ post_unpack() { find "${PKG_BUILD}" -type f -name '*.py' -exec sed -e '1s,^#![[:space:]]*/usr/bin/python.*,#!/usr/bin/env python3,' -i {} \; } -pre_build_target() { - cd ${PKG_BUILD} - aclocal --force --verbose - autoconf --force --verbose - cd - -} - pre_configure_target() { # Filter out some problematic *FLAGS export CFLAGS=$(echo ${CFLAGS} | sed -e "s|-ffast-math||g")