Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
berndgassmann committed Jan 29, 2024
1 parent f7ea81a commit fe6a4e9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/compile_boost.sh
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
#!/bin/bash

BOOST_VERSION="$1"
BOOST_PACKAGE=boost_${BOOST_VERSION//./_}
BOOST_PACKAGE="boost_${BOOST_VERSION//./_}"
ROOT_DIR="$PWD"

pushd dependencies
wget "https://boostorg.jfrog.io/artifactory/main/release/${BOOST_VERSION}/source/{BOOST_PACKAGE}.tar.gz"
tar -xzf {BOOST_PACKAGE}.tar.gz
pushd {BOOST_PACKAGE}
wget "https://boostorg.jfrog.io/artifactory/main/release/${BOOST_VERSION}/source/${BOOST_PACKAGE}.tar.gz"
tar -xzf ${BOOST_PACKAGE}.tar.gz
pushd ${BOOST_PACKAGE}

py3="/usr/bin/env python${PYTHON_BINDING_VERSION}"
py3_root=`${py3} -c "import sys; print(sys.prefix)"`
Expand Down

0 comments on commit fe6a4e9

Please sign in to comment.