mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-07 20:05:24 +01:00
- This is much more standard and replaces /image in sysa and is the standard in sysc (avoids many issues). - GCC needs to have a file created for some unknown reason. - Checksums updated.
26 lines
718 B
Bash
Executable file
26 lines
718 B
Bash
Executable file
# SPDX-FileCopyrightText: 2021 fosslinux <fosslinux@aussies.space>
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
src_prepare() {
|
|
default
|
|
|
|
# We don't have gettext (autopoint) yet.
|
|
AUTOPOINT=true autoreconf -fi
|
|
}
|
|
|
|
src_configure() {
|
|
./configure --prefix=${PREFIX} \
|
|
--bindir="${PREFIX}/bin" \
|
|
--sbindir="${PREFIX}/sbin" \
|
|
--target=i386-unknown-linux-gnu \
|
|
--host=i386-unknown-linux-gnu \
|
|
--build=i386-unknown-linux-gnu \
|
|
--disable-libuuid \
|
|
--without-ncurses \
|
|
--enable-static \
|
|
--enable-static-programs=losetup,mount,umount,fdsik,sfdisk,blkid \
|
|
--enable-shared=no \
|
|
--disable-wall \
|
|
ac_cv_type_loff_t=yes
|
|
}
|