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

add recipe for Apple libdispatch (aka Grand Central Dispatch) #4247

Merged
merged 17 commits into from
Jan 15, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update recipes/libdispatch/all/conanfile.py
Co-authored-by: Uilian Ries <uilianries@gmail.com>
  • Loading branch information
fpelliccioni and uilianries authored Jan 14, 2021
commit 3e9609cf8f67fcbc06b0650d5f0c7263dcfd4b43
2 changes: 1 addition & 1 deletion recipes/libdispatch/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def _build_subfolder(self):

def source(self):
tools.get(**self.conan_data["sources"][self.version])
extracted_dir = f'swift-corelibs-{self.name}-swift-{self.version}-RELEASE'
extracted_dir = "swift-corelibs-{}-swift-{}-RELEASE".format(self.name, self.version)

fpelliccioni marked this conversation as resolved.
Show resolved Hide resolved
os.rename(extracted_dir, self._source_subfolder)

Expand Down