diff options
author | Ed Maste <emaste@FreeBSD.org> | 2021-02-20 01:15:40 +0800 |
---|---|---|
committer | Ed Maste <emaste@FreeBSD.org> | 2021-02-20 01:15:40 +0800 |
commit | 55d2757f88ef6c113f04e195be63aa7f4dd8a891 (patch) | |
tree | efa58a598ef445e1c0a0e01e5bef4782fd11079f /japanese | |
parent | 1694caa044e8a7fca108808ccb48f649bdc4b81c (diff) | |
download | freebsd-ports-gnome-55d2757f88ef6c113f04e195be63aa7f4dd8a891.tar.gz freebsd-ports-gnome-55d2757f88ef6c113f04e195be63aa7f4dd8a891.tar.zst freebsd-ports-gnome-55d2757f88ef6c113f04e195be63aa7f4dd8a891.zip |
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
Diffstat (limited to 'japanese')
-rw-r--r-- | japanese/man/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/japanese/man/Makefile b/japanese/man/Makefile index 2dd9a3373175..efdf6542ac9a 100644 --- a/japanese/man/Makefile +++ b/japanese/man/Makefile @@ -29,6 +29,8 @@ SHEBANG_FILES= catman/catman.perl makewhatis/makewhatis.perl # 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 \ |