svn commit: r545200 - head/audio/faustlive

Piotr Kubaj pkubaj at FreeBSD.org
Tue Aug 18 00:01:57 UTC 2020


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|' \


More information about the svn-ports-all mailing list