diff options
author | Virgil Dupras <vdupras@gentoo.org> | 2019-02-04 16:20:40 -0500 |
---|---|---|
committer | Virgil Dupras <vdupras@gentoo.org> | 2019-02-04 16:20:40 -0500 |
commit | 07c478522a0b5be995eb0cd74a95f74f48872068 (patch) | |
tree | 9fe980f39ecfa8b20ea0caf707605001b1cf181e /dev-util/netsurf-buildsystem/files | |
parent | dev-python/pytest: fix xdist-related test failures (diff) | |
download | gentoo-07c478522a0b5be995eb0cd74a95f74f48872068.tar.gz gentoo-07c478522a0b5be995eb0cd74a95f74f48872068.tar.bz2 gentoo-07c478522a0b5be995eb0cd74a95f74f48872068.zip |
dev-util/netsurf-buildsystem: build with empty WARNINGFLAGS
Closes: https://bugs.gentoo.org/642164
Signed-off-by: Virgil Dupras <vdupras@gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
Diffstat (limited to 'dev-util/netsurf-buildsystem/files')
-rw-r--r-- | dev-util/netsurf-buildsystem/files/gentoo-helpers-r1.sh | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/dev-util/netsurf-buildsystem/files/gentoo-helpers-r1.sh b/dev-util/netsurf-buildsystem/files/gentoo-helpers-r1.sh new file mode 100644 index 000000000000..9ac4354e386e --- /dev/null +++ b/dev-util/netsurf-buildsystem/files/gentoo-helpers-r1.sh @@ -0,0 +1,19 @@ +#!/bin/bash + +netsurf_define_makeconf() { + NETSURF_MAKECONF=( + NSSHARED="${EROOT}"/usr/share/netsurf-buildsystem + LIBDIR="$(get_libdir)" + PREFIX="${EROOT}/usr" + Q= + CC="$(tc-getCC)" + LD="$(tc-getLD)" + HOST_CC="\$(CC)" + CCOPT= + CCNOOPT= + CCDBG= + LDDBG= + AR="$(tc-getAR)" + WARNFLAGS= + ) +} |