fixes bash build.

fixes: https://github.com/fosslinux/live-bootstrap/issues/99

in my usecase (qemu, kernel 3.18.140) around 50% of
all builds are failing with a wrong binary hash.
the culprit is a varying generation of 'pipesize.h' during:

```
/bin/sh ./psize.sh > pipesize.h
```

normally generated 'pipesize.h' looks like:
```
/*
* pipesize.h
*
* This file is automatically generated by psize.sh
* Do not edit!
*/

 #define PIPESIZE 65536
```

in the error case the last line has 512 instead of 65536.
With this change we use a fixed output of the large PIPESIZE.
This commit is contained in:
Bastian Bittorf 2021-04-15 11:56:27 +00:00
parent a6630ffb67
commit 50417514de
1 changed files with 5 additions and 3 deletions

View File

@ -1,5 +1,6 @@
# SPDX-FileCopyrightText: 2021 Paul Dersey <pdersey@gmail.com>
# SPDX-FileCopyrightText: 2021 Andrius Štikonas <andrius@stikonas.eu>
# SPDX-FileCopyrightText: 2021 Bastian Bittorf <bb@npl.de>
#
# SPDX-License-Identifier: GPL-3.0-or-later
@ -11,9 +12,10 @@ src_prepare() {
rm configure
autoconf-2.61
# Without this bash build can be non-deterministic when using
# our old bash 2.05b which was built with Mes C library.
sed -i 's/sleep 3/sleep 3; sync/' builtins/psize.sh
# avoid non-deterministic build:
printf '%s\n%s\n' \
'#!/bin/sh' \
'echo "#define PIPESIZE 65536"' >builtins/psize.sh
}
src_configure() {