mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-02 01:18:08 +01:00
24 lines
584 B
Bash
Executable file
24 lines
584 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
|
|
|
|
# Rebuild pregenerated file
|
|
rm -f src/false.c
|
|
rm src/dircolors.h
|
|
rm src/wheel.h
|
|
|
|
# Bison pre-generated file
|
|
rm lib/getdate.c
|
|
|
|
cp "${mk_dir}/pass2.mk" Makefile
|
|
}
|