Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
fdintino committed Oct 15, 2024
1 parent a81f311 commit e8a0fb6
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion wheelbuild/config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ CCACHE_VERSION=4.7.1
SCCACHE_VERSION=0.3.0
export PERLBREWURL=https://raw.githubusercontent.com/gugod/App-perlbrew/release-0.92/perlbrew
export GITHUB_ACTIONS=1
export PYTHON_EXE="${PYTHON_EXE:-python}"

# Convenience functions to run shell commands suppressed from "set -x" tracing
shopt -s expand_aliases
Expand Down Expand Up @@ -378,7 +379,7 @@ function ensure_openssl {
if [ ! -n "$IS_MACOS" ]; then
group_start "Install openssl"
if [ -n "$IS_ALPINE" ]; then
apk add libressl-dev openssl-dev
apk add openssl-dev
elif [[ $MB_ML_VER == "_2_24" ]]; then
apt-get install -y libssl-dev
else
Expand All @@ -404,12 +405,19 @@ function ensure_sudo {

function append_licenses {
group_start "Append licenses"
local prefix=""
if [ -e "$REPO_DIR" ]; then
pushd $REPO_DIR
fi
for filename in wheelbuild/dependency_licenses/*.txt; do
echo -e "\n\n----\n\n$(basename $filename | cut -f 1 -d '.')\n" | cat >> LICENSE
cat $filename >> LICENSE
done
echo -e "\n\n" | cat >> LICENSE
cat wheelbuild/dependency_licenses/PATENTS >> LICENSE
if [ -e "$REPO_DIR" ]; then
popd
fi
group_end
}

Expand Down

0 comments on commit e8a0fb6

Please sign in to comment.