diff options
author | Tobias Kortkamp <tobik@FreeBSD.org> | 2020-03-19 23:02:30 +0000 |
---|---|---|
committer | Tobias Kortkamp <tobik@FreeBSD.org> | 2020-03-19 23:02:30 +0000 |
commit | 29a23b8db46037b11c05515ac5fdf5943629c024 (patch) | |
tree | 232716313097cfa367290f99641e117ac715906f /audio/freealut | |
parent | Finish Moving py-svg_path to py-svg.path (diff) |
Clean up LLD_UNSAFE from openal-soft ports
After FreeBSD 12.0 EOL we no longer have to worry about LLD 6 and
can drop LLD_UNSAFE from openal-soft ports. LLD can link them fine
now but some ports needs a little help on i386 (-Wl,-znotext).
PR: 226980
Reviewed by: jbeich (earlier version)
Differential Revision: https://reviews.freebsd.org/D23030
Notes
Notes:
svn path=/head/; revision=528750
Diffstat (limited to 'audio/freealut')
-rw-r--r-- | audio/freealut/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/freealut/Makefile b/audio/freealut/Makefile index 5ffc52874160..2225504640f3 100644 --- a/audio/freealut/Makefile +++ b/audio/freealut/Makefile @@ -16,7 +16,7 @@ CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib USES= gmake libtool openal:al pathfix pkgconfig USE_LDCONFIG= yes -LLD_UNSAFE= yes +LDFLAGS_i386= -Wl,-znotext INSTALL_TARGET= install-strip WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} |