mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-12 22:35:23 +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"
|
||||
}
|
||||
|
|
|
|||
16
sysa/libtool-2.2.4/patches/hostname.patch
Normal file
16
sysa/libtool-2.2.4/patches/hostname.patch
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
SPDX-FileCopyrightText: 2022 fosslinux <fosslinux@aussies.space>
|
||||
|
||||
SPDX-License-Identifier: GPL-2.0-only
|
||||
|
||||
Remove hostname from libtool script.
|
||||
|
||||
--- libltdl/m4/libtool.m4 2022-02-26 10:27:30.649198752 +1100
|
||||
+++ libltdl/m4/libtool.m4 2022-02-26 10:28:39.458342624 +1100
|
||||
@@ -684,7 +684,6 @@
|
||||
|
||||
# `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services.
|
||||
# Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION
|
||||
-# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
|
||||
# NOTE: Changes made to this file will be lost: look at ltmain.sh.
|
||||
#
|
||||
_LT_COPYING
|
||||
Loading…
Add table
Add a link
Reference in a new issue