Date: Tue, 18 Aug 2020 00:02:48 +0000 (UTC) From: Piotr Kubaj <pkubaj@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r545201 - branches/2020Q3/audio/faustlive Message-ID: <202008180002.07I02mIK074953@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: pkubaj Date: Tue Aug 18 00:02:47 2020 New Revision: 545201 URL: https://svnweb.freebsd.org/changeset/ports/545201 Log: MFH: r545200 audio/faustlive: fix build on GCC architectures Don't explicitly add -L/usr/lib, it makes GCC from ports link against base libstdc++. Clang still links fine to base libraries. Approved by: portmgr (fix build blanket) Modified: branches/2020Q3/audio/faustlive/Makefile Directory Properties: branches/2020Q3/ (props changed) Modified: branches/2020Q3/audio/faustlive/Makefile ============================================================================== --- branches/2020Q3/audio/faustlive/Makefile Tue Aug 18 00:01:56 2020 (r545200) +++ branches/2020Q3/audio/faustlive/Makefile Tue Aug 18 00:02:47 2020 (r545201) @@ -52,7 +52,8 @@ post-patch: @${REINPLACE_CMD} -e ' \ s|########## LIBS AND FLAGS|CXXFLAGS+=$$$$system($$$$LLVM_CONFIG --cflags)| ; \ s|/use/local|${LOCALBASE}| ; \ - s|-L/opt/local/lib$$|-L${LOCALBASE}/lib -lexecinfo|' \ + s|-L/opt/local/lib$$|-L${LOCALBASE}/lib -lexecinfo| ; \ + s|-L/usr/lib/||' \ ${WRKSRC}/Build/FreeBSD/FaustLive.pro @${REINPLACE_CMD} -e ' \ s|#!/bin/bash|#!/bin/sh|' \
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202008180002.07I02mIK074953>