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

boost prepareModule: switch from p7zip to 7zip binary #13

Merged
merged 1 commit into from
Sep 11, 2024
Merged
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ if [ ! -d "boost" ]; then
curl -kLSs https://boostorg.jfrog.io/artifactory/main/release/1.70.0/binaries/boost_1_70_0-unsupported-bin-msvc-all-32-64.7z -o boost-1.70.0.7z
fi

# We need to "sudo apt install p7zip-full"
# We need to "sudo apt install 7zip"
echo "2) Extracting boost binary package"
7z x boost-1.70.0.7z
7zz x boost-1.70.0.7z

echo "3) Renaming boost folder"
mv boost_1_70_0 boost
Expand Down
Loading