fix(bzip2): install artifacts to both /usr and bootstrap-seeds

This commit is contained in:
vxtls 2026-03-02 17:01:44 -05:00
parent f2a151e96b
commit 6dfc8d5c85

View file

@ -1,6 +1,7 @@
# SPDX-License-Identifier: GPL-3.0-or-later
SEED_PREFIX="/bootstrap-seeds/bzip2-1.0.6"
SYSTEM_PREFIX="/usr"
src_configure() {
:
@ -11,5 +12,6 @@ src_compile() {
}
src_install() {
make PREFIX="${SYSTEM_PREFIX}" DESTDIR="${DESTDIR}" install
make PREFIX="${SEED_PREFIX}" DESTDIR="${DESTDIR}" install
}