mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-04 02:15:24 +01:00
Add a patch to improve the reproducibility of findutils
See the comment in the patch for more details.
This commit is contained in:
parent
b03f3e11c0
commit
2a0fef17e2
2 changed files with 20 additions and 0 deletions
|
|
@ -5,6 +5,8 @@
|
|||
src_prepare() {
|
||||
. ../../import-gnulib.sh
|
||||
|
||||
default_src_prepare
|
||||
|
||||
autoreconf-2.61 -f
|
||||
|
||||
# Pre-built texinfo files
|
||||
|
|
|
|||
18
sysa/findutils-4.2.33/patches/force-getcwd-fallback.patch
Normal file
18
sysa/findutils-4.2.33/patches/force-getcwd-fallback.patch
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
SPDX-FileCopyrightText: 2022 Dor Askayo <dor.askayo@gmail.com>
|
||||
|
||||
SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
Use the fallback implementations of getcwd to get the same /usr/bin/find
|
||||
checksum when building across FUSE and non-FUSE filesystems.
|
||||
|
||||
--- gnulib/m4/getcwd-path-max.m4 2022-01-08 13:16:54.412709192 +0200
|
||||
+++ gnulib/m4/getcwd-path-max.m4 2022-01-16 11:38:02.658606802 +0200
|
||||
@@ -81,7 +81,7 @@
|
||||
char *cwd = getcwd (buf, PATH_MAX);
|
||||
size_t initial_cwd_len;
|
||||
size_t cwd_len;
|
||||
- int fail = 0;
|
||||
+ int fail = 1;
|
||||
size_t n_chdirs = 0;
|
||||
|
||||
if (cwd == NULL)
|
||||
Loading…
Add table
Add a link
Reference in a new issue