diff options
author | 2022-11-05 20:35:06 +0600 | |
---|---|---|
committer | 2022-11-05 20:40:10 +0600 | |
commit | 2585d4886ceb7f08612068fd83f148ef230333f3 (patch) | |
tree | 647fabc3506580c5134a0fec57f282b57524ae6f /x11-misc | |
parent | www-apps/mycorrhiza: change dependency tarball to vendor tarball (diff) | |
download | guru-2585d4886ceb7f08612068fd83f148ef230333f3.tar.gz guru-2585d4886ceb7f08612068fd83f148ef230333f3.tar.bz2 guru-2585d4886ceb7f08612068fd83f148ef230333f3.zip |
x11-misc/sxcs: fix LDFLAGS issue
Closes: https://bugs.gentoo.org/879833
Signed-off-by: Nickolas Raymond Kaczynski <nrk@disroot.org>
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/sxcs/sxcs-0.7.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/x11-misc/sxcs/sxcs-0.7.ebuild b/x11-misc/sxcs/sxcs-0.7.ebuild index 4d235209c..88ff0eaf9 100644 --- a/x11-misc/sxcs/sxcs-0.7.ebuild +++ b/x11-misc/sxcs/sxcs-0.7.ebuild @@ -23,10 +23,10 @@ RDEPEND=" DEPEND="${RDEPEND}" src_compile() { + # bug: https://bugs.gentoo.org/879833 emake \ CC=$(tc-getCC) \ - CFLAGS="${CFLAGS}" \ - LDFLAGS="${LDFLAGS}" + CFLAGS="${CFLAGS} ${LDFLAGS}" } src_install() { |