svn commit: r566082 - head/japanese/man

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


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

Log:
  japanese/man: fix build with base system PIE default
  
  PIE static libraries are currently not supported by the base system
  mk files.  For now just disable PIE in the affected ports as a
  workaround.
  
  PR:		253275 [exp-run]
  Approved by:	lwhsu
  Sponsored by:	The FreeBSD Foundation
  Differential Revision:	https://reviews.freebsd.org/D28791

Modified:
  head/japanese/man/Makefile

Modified: head/japanese/man/Makefile
==============================================================================
--- head/japanese/man/Makefile	Fri Feb 19 17:12:44 2021	(r566081)
+++ head/japanese/man/Makefile	Fri Feb 19 17:15:40 2021	(r566082)
@@ -29,6 +29,8 @@ SHEBANG_FILES=	catman/catman.perl makewhatis/makewhati
 
 # Fix build with clang11
 CFLAGS+=	-fcommon
+# XXX PIE static libraries currently not supported by base system /usr/share/mk
+MAKE_ARGS+=	WITHOUT_PIE=true
 
 post-patch:
 .for file in	apropos/apropos.sh catman/catman.perl \


More information about the svn-ports-all mailing list