mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-19 17:53:00 +01:00
Upgrade musl to 1.2.3.
This commit is contained in:
parent
b4243bf95d
commit
98ba2759b2
6 changed files with 51 additions and 53 deletions
22
sysa/musl-1.2.3/musl-1.2.3.sh
Executable file
22
sysa/musl-1.2.3/musl-1.2.3.sh
Executable file
|
|
@ -0,0 +1,22 @@
|
|||
# SPDX-FileCopyrightText: 2022 Andrius Štikonas <andrius@stikonas.eu>
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
src_configure() {
|
||||
CC=gcc ./configure \
|
||||
--host=i386-unknown-linux-musl \
|
||||
--disable-shared \
|
||||
--prefix="${PREFIX}" \
|
||||
--libdir="${PREFIX}/lib/musl" \
|
||||
--includedir="${PREFIX}/include/"
|
||||
|
||||
# configure script creates this file
|
||||
if test -f /dev/null; then
|
||||
rm /dev/null
|
||||
mknod -m 666 /dev/null c 1 3
|
||||
fi
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
make CROSS_COMPILE=
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue