diff options
author | danw <danw@pkgsrc.org> | 2004-08-28 16:41:33 +0000 |
---|---|---|
committer | danw <danw@pkgsrc.org> | 2004-08-28 16:41:33 +0000 |
commit | 4a92361dcfd3b0c94c605f4e7a341c590e937de5 (patch) | |
tree | 7638103873a16f1ce96485dc1d4a547ff85859ff /lang | |
parent | be9d3ae616fc6b3ac8fe5c709e00791ffaca2112 (diff) | |
download | pkgsrc-4a92361dcfd3b0c94c605f4e7a341c590e937de5.tar.gz |
set INSTALL_UNSTRIPPED on darwin so that python modules will build
Diffstat (limited to 'lang')
-rw-r--r-- | lang/python23/Makefile.common | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lang/python23/Makefile.common b/lang/python23/Makefile.common index f37adaebd21..a86d78af5b8 100644 --- a/lang/python23/Makefile.common +++ b/lang/python23/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.14 2004/07/22 09:16:03 recht Exp $ +# $NetBSD: Makefile.common,v 1.15 2004/08/28 16:41:33 danw Exp $ # DISTNAME= Python-2.3.4 @@ -67,6 +67,11 @@ EXTRA_SO_SUBST= PLIST_SUBST+= EXTRA_SO=${EXTRA_SO_SUBST} PLIST_SUBST+= OSSAUDIODEV=${OSSAUDIODEV_SUBST} +# Make sure python modules can link correctly +.if ${OPSYS} == "Darwin" +INSTALL_UNSTRIPPED= yes +.endif + # ensure that the bsddb185 module is built on all platforms USE_DB185= yes .include "../../mk/bdb.buildlink3.mk" |