Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[libxslt] remove workaround for iOS #4470

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 1 addition & 7 deletions recipes/libxslt/all/conanfile.py
Expand Up @@ -133,13 +133,7 @@ def _build_with_configure(self):
value = ("--with-%s" % name) if value else ("--without-%s" % name)
configure_args.append(value)

# Disable --build when building for iPhoneSimulator. The configure script halts on
# not knowing if it should cross-compile.
build = None
if self.settings.os == "iOS" and self.settings.arch == "x86_64":
build = False

env_build.configure(args=configure_args, build=build, configure_dir=self._full_source_subfolder)
env_build.configure(args=configure_args, configure_dir=self._full_source_subfolder)
env_build.make(args=["install", "V=1"])

def package(self):
Expand Down