diff options
author | Mike Frysinger <vapier@gentoo.org> | 2023-01-20 17:26:18 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2023-01-20 17:29:34 -0500 |
commit | 11ea6d1a440837222b22767b912b459aeb554901 (patch) | |
tree | 0538f62e149b74de373ba998062a7dd24d95027c /sys-libs/newlib | |
parent | sys-fs/zfs-kmod: add 2.1.8 (diff) | |
download | gentoo-11ea6d1a440837222b22767b912b459aeb554901.tar.gz gentoo-11ea6d1a440837222b22767b912b459aeb554901.tar.bz2 gentoo-11ea6d1a440837222b22767b912b459aeb554901.zip |
sys-libs/newlib: disable verbose builds
The automatic probing of --disable-silent-rules doesn't work, so add
the flag manually.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'sys-libs/newlib')
-rw-r--r-- | sys-libs/newlib/newlib-9999.ebuild | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys-libs/newlib/newlib-9999.ebuild b/sys-libs/newlib/newlib-9999.ebuild index 39e03d098e4d..3b956c480a08 100644 --- a/sys-libs/newlib/newlib-9999.ebuild +++ b/sys-libs/newlib/newlib-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="7" @@ -71,6 +71,9 @@ src_configure() { CFLAGS_ORIG="${CFLAGS}" local myconf=( + # The top-level configure doesn't utilize this flag, but subdirs do, + # so autodetection for econf doesn't work. Add ourselves. + --disable-silent-rules # Disable legacy syscall stub code in newlib. These have been # moved to libgloss for a long time now, so the code in newlib # itself just gets in the way. |