Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 18 Aug 2020 00:01:57 +0000 (UTC)
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r545200 - head/audio/faustlive
Message-ID:  <202008180001.07I01vCQ074020@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pkubaj
Date: Tue Aug 18 00:01:56 2020
New Revision: 545200
URL: https://svnweb.freebsd.org/changeset/ports/545200

Log:
  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.
  
  MFH:		2020Q3 (fix build blanket)

Modified:
  head/audio/faustlive/Makefile

Modified: head/audio/faustlive/Makefile
==============================================================================
--- head/audio/faustlive/Makefile	Tue Aug 18 00:01:12 2020	(r545199)
+++ head/audio/faustlive/Makefile	Tue Aug 18 00:01:56 2020	(r545200)
@@ -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?202008180001.07I01vCQ074020>