diff options
author | Marcel Moolenaar <marcel@FreeBSD.org> | 2004-02-16 19:03:00 +0000 |
---|---|---|
committer | Marcel Moolenaar <marcel@FreeBSD.org> | 2004-02-16 19:03:00 +0000 |
commit | e91938d7ff4abd39aace9ef5b2ca4f6359ec9ce5 (patch) | |
tree | 114bc45beb503ce9db68be646be2e0fd73954858 /lang/python | |
parent | XFree86-Server font file buffer overflows (diff) |
On ia64, libpython2.3 must be built with -fPIC as well. This unbreaks
KDE (for example).
Notes
Notes:
svn path=/head/; revision=101078
Diffstat (limited to 'lang/python')
-rw-r--r-- | lang/python/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lang/python/Makefile b/lang/python/Makefile index f1e5839bdd2b..cca1766771f9 100644 --- a/lang/python/Makefile +++ b/lang/python/Makefile @@ -76,7 +76,7 @@ PLIST_SUB+= X86_ONLY="" .else PLIST_SUB+= X86_ONLY="@comment " .endif -.if ${ARCH} == amd64 +.if ${ARCH} == amd64 || ${ARCH} == ia64 CFLAGS+= -fPIC .endif .if ${ARCH} == amd64 || ${ARCH} == ia64 || ${ARCH} == sparc64 || ${ARCH} == alpha |