mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-17 00:35:25 +01:00
Final fixes:
- All QEMU reproducibility issues resolved - Added SPDX licensing - Couple other small issues - Fix guile reproducbility
This commit is contained in:
parent
9543a47f1b
commit
b760b3eb2b
78 changed files with 287 additions and 56 deletions
|
|
@ -1,8 +1,11 @@
|
|||
# SPDX-FileCopyrightText: 2021 Andrius Štikonas <andrius@stikonas.eu>
|
||||
# SPDX-FileCopyrightText: 2022 fosslinux <fosslinux@aussies.space>
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
rm libltdl/config/ltmain.sh
|
||||
|
||||
rm doc/*.info
|
||||
|
|
@ -18,10 +21,10 @@ src_configure() {
|
|||
--host=i386-unknown-linux \
|
||||
--target=i386-unknown-linux \
|
||||
--build=i386-unknown-linux \
|
||||
ac_path_EGREP="/usr/bin/grep -E" \
|
||||
ac_path_FGREP="/usr/bin/grep -F" \
|
||||
ac_path_GREP="/usr/bin/grep" \
|
||||
ac_path_SED="/usr/bin/sed"
|
||||
ac_path_EGREP="egrep" \
|
||||
ac_path_FGREP="fgrep" \
|
||||
ac_path_GREP="grep" \
|
||||
ac_path_SED="sed"
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
|
|
@ -30,4 +33,10 @@ src_compile() {
|
|||
|
||||
src_install() {
|
||||
make install MAKEINFO=true DESTDIR="${DESTDIR}"
|
||||
|
||||
sed -i -e "s/{EGREP=.*/{EGREP='egrep'}/" \
|
||||
-e "s/{FGREP=.*/{FREGP='fgrep'}/" \
|
||||
-e "s/{GREP=.*/{GREP='grep'}/" \
|
||||
-e "s/{SED=.*/{SED='sed'}/" \
|
||||
"${DESTDIR}/usr/bin/libtool"
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue