Skip to content

Commit

Permalink
protoc: remove arch and os from settings
Browse files Browse the repository at this point in the history
  • Loading branch information
madebr committed Mar 10, 2020
1 parent 75c0881 commit 248c077
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions recipes/protoc/3.9.x/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class ProtocConan(ConanFile):
license = "BSD-3-Clause"
exports_sources = ["CMakeLists.txt", "patches/*"]
generators = "cmake"
settings = "os_build", "arch_build", "os", "arch", "compiler"
settings = "os_build", "arch_build", "compiler"

_cmake = None

Expand Down Expand Up @@ -59,8 +59,6 @@ def package(self):
cmake.install()

def package_id(self):
del self.info.settings.arch
del self.info.settings.os
del self.info.settings.compiler
self.info.include_build_settings()

Expand Down

0 comments on commit 248c077

Please sign in to comment.