diff options
author | leeym <leeym@FreeBSD.org> | 2006-01-21 09:28:49 +0800 |
---|---|---|
committer | leeym <leeym@FreeBSD.org> | 2006-01-21 09:28:49 +0800 |
commit | 9900595d99e01808ecff83fe253eb18a7edffb68 (patch) | |
tree | 5cdb38edf8435257612a1d9b3f2157364971104c /textproc/p5-Text-BibTeX | |
parent | 73e82cd81e103505a845ebcf6311854b721a0fe4 (diff) | |
download | freebsd-ports-gnome-9900595d99e01808ecff83fe253eb18a7edffb68.tar.gz freebsd-ports-gnome-9900595d99e01808ecff83fe253eb18a7edffb68.tar.zst freebsd-ports-gnome-9900595d99e01808ecff83fe253eb18a7edffb68.zip |
- add -fpic based on PR 38678 to solve 'gprel relocation against dynamic symbol' problem
(if it still doesnt work, I'll mark it BROKEN next time)
Noticed by: kris
Diffstat (limited to 'textproc/p5-Text-BibTeX')
-rw-r--r-- | textproc/p5-Text-BibTeX/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/textproc/p5-Text-BibTeX/Makefile b/textproc/p5-Text-BibTeX/Makefile index 94ee937f23d1..fa54ac20ff12 100644 --- a/textproc/p5-Text-BibTeX/Makefile +++ b/textproc/p5-Text-BibTeX/Makefile @@ -39,7 +39,7 @@ MAN3= Text::BibTeX.3 \ .include <bsd.port.pre.mk> .if ${ARCH} == "amd64" || ${ARCH} == "ia64" -CFLAGS+= -fPIC +CFLAGS+= -fPIC -fpic .endif .include <bsd.port.post.mk> |