mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-10 05:15:24 +01:00
12 lines
299 B
Bash
Executable file
12 lines
299 B
Bash
Executable file
# SPDX-FileCopyrightText: 2021 Andrius Štikonas <andrius@stikonas.eu>
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
src_prepare() {
|
|
autoreconf-2.61 -f
|
|
}
|
|
|
|
src_configure() {
|
|
# Musl is not recognized, pretend to be uClibc
|
|
CC=tcc ./configure --prefix="${PREFIX}" CPPFLAGS="-D__UCLIBC__"
|
|
}
|