From 61c3b960ac6bba11a7b97acdabf3d5f863ec717e Mon Sep 17 00:00:00 2001 From: ericLemanissier Date: Thu, 9 Jun 2022 09:39:31 +0200 Subject: [PATCH] Update conanfile.py --- recipes/mingw-w64/linux/conanfile.py | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/recipes/mingw-w64/linux/conanfile.py b/recipes/mingw-w64/linux/conanfile.py index b727de8b6a734..3da23fd7e4174 100644 --- a/recipes/mingw-w64/linux/conanfile.py +++ b/recipes/mingw-w64/linux/conanfile.py @@ -81,12 +81,9 @@ def build(self): with tools.environment_append(env): with_gmp_mpfc_mpc = [ - "--with-gmp=system", - "--with-gmp-prefix={}".format(self.deps_cpp_info["gmp"].rootpath.replace("\\", "/")), - "--with-mpfr=system", - "--with-mpfr-prefix={}".format(self.deps_cpp_info["mpfr"].rootpath.replace("\\", "/")), - "--with-mpc=system", - "--with-mpc-prefix={}".format(self.deps_cpp_info["mpc"].rootpath.replace("\\", "/")) + "--with-gmp={}".format(self.deps_cpp_info["gmp"].rootpath.replace("\\", "/")), + "--with-mpfr={}".format(self.deps_cpp_info["mpfr"].rootpath.replace("\\", "/")), + "--with-mpc={}".format(self.deps_cpp_info["mpc"].rootpath.replace("\\", "/")) ] self.output.info("Building binutils ...")