Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 0 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ RUN ${RETRY} apt -y update -qq > /dev/null \
make \
openjdk-17-jdk \
patch \
patchelf \
pkg-config \
python3 \
python3-dev \
Expand Down
1 change: 0 additions & 1 deletion doc/source/quickstart.rst
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@ the following command (re-adapted from the `Dockerfile` we use to perform CI bui
make \
openjdk-17-jdk \
patch \
patchelf \
pkg-config \
python3 \
python3-dev \
Expand Down
2 changes: 1 addition & 1 deletion pythonforandroid/recipe.py
Original file line number Diff line number Diff line change
Expand Up @@ -1311,7 +1311,7 @@ def build_arch(self, arch):
return

self.install_hostpython_prerequisites(
packages=["build[virtualenv]", "pip", "setuptools"] + self.hostpython_prerequisites
packages=["build[virtualenv]", "pip", "setuptools", "patchelf"] + self.hostpython_prerequisites
)
self.patch_shebangs(self._host_recipe.site_bin, self.real_hostpython_location)

Expand Down