From 749be47e539e9003a200527363d9a89b757889e7 Mon Sep 17 00:00:00 2001 From: Florian Fainelli Date: Mon, 10 Jul 2017 16:20:21 -0700 Subject: [PATCH] sox: Explicitly disable support for OpenMP In case a toolchain happens to be built with OpenMP, sox's configure script would be picking that, but we would not be depending on libgomp and would fail creating the package. Since internal OpenWrt/LEDE toolchains don't enable OpenMP by default, let's just do that here as well. Signed-off-by: Florian Fainelli --- sound/sox/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sound/sox/Makefile b/sound/sox/Makefile index 34aa32ed1c..934b554659 100644 --- a/sound/sox/Makefile +++ b/sound/sox/Makefile @@ -52,7 +52,8 @@ CONFIGURE_ARGS += \ --without-png \ --without-sndfile \ --with-lame \ - --with-id3tag + --with-id3tag \ + --disable-openmp define Build/InstallDev $(INSTALL_DIR) $(1)/usr/include