From fefb6a6785ccc7fd2818158ba443bbce80628364 Mon Sep 17 00:00:00 2001 From: Neal Frager Date: Tue, 18 Feb 2025 06:30:01 +0000 Subject: [PATCH] package/pkg-autotools: remove redundant configs Since the following commit: https://github.com/buildroot/buildroot/commit/b07030a708293756e25edd6432ed02cc53ff758e The following host configs are included with $$(HOST_CONFIGURE_OPTS) CFLAGS="$$(HOST_CFLAGS)" LDFLAGS="$$(HOST_LDFLAGS)" As they are redundant, we can remove them from the autotools infrastructure. Signed-off-by: Neal Frager Signed-off-by: Julien Olivain --- package/pkg-autotools.mk | 2 -- 1 file changed, 2 deletions(-) diff --git a/package/pkg-autotools.mk b/package/pkg-autotools.mk index f17186dfe4..8ffb0e0047 100644 --- a/package/pkg-autotools.mk +++ b/package/pkg-autotools.mk @@ -200,8 +200,6 @@ else define $(2)_CONFIGURE_CMDS (cd $$($$(PKG)_SRCDIR) && rm -rf config.cache; \ $$(HOST_CONFIGURE_OPTS) \ - CFLAGS="$$(HOST_CFLAGS)" \ - LDFLAGS="$$(HOST_LDFLAGS)" \ $$($$(PKG)_CONF_ENV) \ CONFIG_SITE=/dev/null \ ./configure \