diff options
author | tron <tron@pkgsrc.org> | 2007-06-08 22:16:25 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2007-06-08 22:16:25 +0000 |
commit | 4b41cf2f86357b5b28a1cc83911e89f39c30cb4b (patch) | |
tree | 5368ce191b17cb71355f6976b610e3fa17d6aa00 /lang | |
parent | c57c531067816c8c13884ee936eed0c6d00dc42f (diff) | |
download | pkgsrc-4b41cf2f86357b5b28a1cc83911e89f39c30cb4b.tar.gz |
We have to use GNU make under Mac OS X because the "configure" script
generates a GNU make specific makefile on this platform.
Diffstat (limited to 'lang')
-rw-r--r-- | lang/python24/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lang/python24/Makefile b/lang/python24/Makefile index 7e5b0d2692d..971ed0ba1f4 100644 --- a/lang/python24/Makefile +++ b/lang/python24/Makefile @@ -1,5 +1,4 @@ -# $NetBSD: Makefile,v 1.31 2007/06/08 14:16:15 wiz Exp $ -# +# $NetBSD: Makefile,v 1.32 2007/06/08 22:16:25 tron Exp $ DISTNAME= Python-2.4.4 PKGNAME= python24-2.4.4 @@ -46,6 +45,7 @@ PLIST_SRC+= ${.CURDIR}/../../lang/python24/PLIST.common_end .if ${OPSYS} == "Darwin" || ${OPSYS} == "Interix" PY_PLATNAME= ${LOWER_OPSYS} +USE_TOOLS+= gmake .elif ${OPSYS} == "IRIX" PY_PLATNAME= ${LOWER_OPSYS:C/\..*//} .elif ${OPSYS} == "SunOS" @@ -142,7 +142,8 @@ post-extract: .if ${OPSYS} == "Darwin" post-build: - (cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} libpython2.4.2.dylib) + cd ${WRKSRC} && \ + ${SETENV} ${MAKE_ENV} ${MAKE_PROGRAM} libpython2.4.2.dylib post-install: ${LN} -fs ${DESTDIR}${PREFIX}/lib/libpython2.4.2.dylib \ |