Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/build_iso.sh
diff options
context:
space:
mode:
authorDylan M. Taylor <dylan@dylanmtaylor.com>2023-10-02 01:50:58 -0400
committerGitHub <noreply@github.com>2023-10-02 07:50:58 +0200
commita095e393d8517e99f8832c447fd2ef0902cb6ca6 (patch)
treef43301bfb6b9a727c149c4aad47cb2d7eff4ef74 /build_iso.sh
parent8257e9f73f6d8f233731b5632863a5d7a4ae827e (diff)
Fix ArchInstall ISO build (#2142)
Diffstat (limited to 'build_iso.sh')
-rwxr-xr-xbuild_iso.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/build_iso.sh b/build_iso.sh
index 3955b41a..1049479c 100755
--- a/build_iso.sh
+++ b/build_iso.sh
@@ -6,7 +6,9 @@ packages_file="/tmp/archlive/packages.x86_64"
# Packages to add to the archiso profile packages
packages=(
+ gcc
git
+ pkgconfig
python
python-pip
python-build
@@ -24,7 +26,7 @@ cat <<- _EOF_ | tee /tmp/archlive/airootfs/root/.zprofile
rm -rf dist
python -m build --wheel --no-isolation
- pip install dist/archinstall*.whl
+ pip install dist/archinstall*.whl --break-system-packages
echo "This is an unofficial ISO for development and testing of archinstall. No support will be provided."
echo "This ISO was built from Git SHA $GITHUB_SHA"