svn commit: r566083 - head/audio/play

Ed Maste emaste at FreeBSD.org
Fri Feb 19 17:17:22 UTC 2021


Author: emaste (src committer)
Date: Fri Feb 19 17:17:22 2021
New Revision: 566083
URL: https://svnweb.freebsd.org/changeset/ports/566083

Log:
  audio/play: fix build with base system PIE default
  
  PR:		253275 [exp-run]
  Approved by:	lwhsu
  Sponsored by:	The FreeBSD Foundation
  Differential Revision:	https://reviews.freebsd.org/D28794

Modified:
  head/audio/play/Makefile

Modified: head/audio/play/Makefile
==============================================================================
--- head/audio/play/Makefile	Fri Feb 19 17:15:40 2021	(r566082)
+++ head/audio/play/Makefile	Fri Feb 19 17:17:22 2021	(r566083)
@@ -14,6 +14,8 @@ CONFLICTS=	sox-[0-9]*
 
 USES=		uidfix
 MAKE_ARGS=	CFLAGS="${CFLAGS}" MANDIR="${PREFIX}/man/ja/man" BINDIR="${PREFIX}/bin"
+# XXX PIE static libraries are not supported by base system /usr/share/mk
+MAKE_ARGS+=	WITHOUT_PIE=true
 
 PLIST_FILES=	bin/play man/ja/man1/play.1.gz
 


More information about the svn-ports-all mailing list