mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-06 11:25:23 +01:00
* Bzip2 was manually installed directly into filesystem, so bzip2 package was empty. Fixed by installing it to destdir. bzip2 moves out its binary before installing its own package. * sha256sum from stage0-posix was not checking any checksums because it does not accept piped input. Fixed by using temporary file. * grep was broken for a short time (but with fixed bzip2 package this caused failures) due to touch creating grep file of zero size (egrep symlink was touched). Fixed by implementing touch -h Resolves #156, resolves #166, resolves #167
26 lines
593 B
Bash
Executable file
26 lines
593 B
Bash
Executable file
# SPDX-FileCopyrightText: 2021 Paul Dersey <pdersey@gmail.com>
|
|
# SPDX-FileCopyrightText: 2022 fosslinux <fosslinux@aussies.space>
|
|
# SPDX-FileCopyrightText: 2022 Andrius Štikonas <andrius@stikonas.eu>
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
src_prepare() {
|
|
default
|
|
|
|
cp lib/fnmatch_.h lib/fnmatch.h
|
|
cp lib/ftw_.h lib/ftw.h
|
|
cp lib/search_.h lib/search.h
|
|
touch config.h
|
|
|
|
# Bison pre-generated file
|
|
rm lib/getdate.c
|
|
|
|
cp "${mk_dir}/pass2.mk" Makefile
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
|
|
# perl later requires /bin/pwd
|
|
ln -s "${PREFIX}/bin/pwd" /bin/pwd
|
|
}
|