From 8f3ba14bf66fe320d05d9cbb3a8a265d773b0117 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20M=C4=85ka?= Date: Fri, 20 Oct 2017 13:06:18 +0200 Subject: [PATCH] Removed installing g++ using SystemPackageTool --- conanfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conanfile.py b/conanfile.py index 2823741..42befbb 100644 --- a/conanfile.py +++ b/conanfile.py @@ -43,7 +43,7 @@ def source(self): def system_requirements(self): if os_info.is_linux: installer = SystemPackageTool() - for pkg in ["autoconf", "automake", "libtool", "curl", "make", "g++", "unzip"]: + for pkg in ["autoconf", "automake", "libtool", "curl", "make", "unzip"]: installer.install(pkg) def build(self):