From bddc64e866186356297240240c69be7b17ff6d40 Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni Date: Sat, 24 Sep 2022 09:16:45 +0200 Subject: [PATCH] package/m4: remove --disable-static for host package This issue was reported by Firas Khalil Khana on a Github pull request at https://github.com/buildroot/buildroot/pull/113/. There is no --disable-static in m4. Research in the dark corners of the Git history has shown that it was apparently added by Peter Korsgaard back in 2009, in commit 3467cf73051d2b8d28d48dfdd694f66315f3b8ca ("m4: cleanup"). At this time, the version of m4 used was 1.4.9, but even looking at the tarball of this old release shows that the ./configure did not support --disable-static. So let's drop this option. Signed-off-by: Thomas Petazzoni --- package/m4/m4.mk | 1 - 1 file changed, 1 deletion(-) diff --git a/package/m4/m4.mk b/package/m4/m4.mk index 3a12092971..39ad898b10 100644 --- a/package/m4/m4.mk +++ b/package/m4/m4.mk @@ -9,6 +9,5 @@ M4_SOURCE = m4-$(M4_VERSION).tar.xz M4_SITE = $(BR2_GNU_MIRROR)/m4 M4_LICENSE = GPL-3.0+ M4_LICENSE_FILES = COPYING -HOST_M4_CONF_OPTS = --disable-static $(eval $(host-autotools-package))