From dc66e204ed63adf5055fe434643e18fc06a11d80 Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni Date: Sun, 4 Oct 2015 15:36:26 +0100 Subject: [PATCH] mpdecimal: fix comment about fenv.h We're disabling fenv.h usage on i386 because it is not available in musl/uclibc (and not musl/glibc as was written). Signed-off-by: Thomas Petazzoni Signed-off-by: Peter Korsgaard --- package/mpdecimal/mpdecimal.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/mpdecimal/mpdecimal.mk b/package/mpdecimal/mpdecimal.mk index 2c8cc3ccfc..9b13def523 100644 --- a/package/mpdecimal/mpdecimal.mk +++ b/package/mpdecimal/mpdecimal.mk @@ -13,7 +13,7 @@ MPDECIMAL_CONF_OPTS = LD="$(TARGET_CC)" MPDECIMAL_AUTORECONF = YES # On i386, by default, mpdecimal tries to uses which is not -# available in musl/glibc. So in this case, we tell mpdecimal to use +# available in musl/uclibc. So in this case, we tell mpdecimal to use # the generic 32 bits code, which is anyway the one used on ARM, # PowerPC, etc. ifeq ($(BR2_TOOLCHAIN_USES_GLIBC),)