mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-04 10:25:25 +01:00
Unlike make 3.80, make 3.82 makes a call to putenv which does not exist in mes libc so a stub was created for this function. The checksum for the util-linux package required an update. When built with original make 3.80 it resulted in an extra file /usr/share/man/man8/.8 that does not exist when building with 3.82
11 lines
164 B
C
11 lines
164 B
C
/*
|
|
* SPDX-FileCopyrightText: 2023 Paul Dersey <pdersey@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
int putenv(char *string)
|
|
{
|
|
return 0;
|
|
}
|
|
|