diff options
author | hubertf <hubertf@pkgsrc.org> | 2002-01-02 10:21:44 +0000 |
---|---|---|
committer | hubertf <hubertf@pkgsrc.org> | 2002-01-02 10:21:44 +0000 |
commit | da17a9eba04095754f896cb542097b944ae064d9 (patch) | |
tree | 0227cafa5ddca2c2b49a309fba582cc15b214552 | |
parent | caeb1c030f9894743d11e4ebfa3376df2d31113e (diff) | |
download | pkgsrc-da17a9eba04095754f896cb542097b944ae064d9.tar.gz |
Fer heaven's sake, if you call ${MAKE} manually, prepend a
"${SETENV} ${MAKE_ENV}" esp. if variables are needed to find includes.
How did this work when tested???
-rw-r--r-- | graphics/py-imaging/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/py-imaging/Makefile b/graphics/py-imaging/Makefile index 474e5f8855e..88d3acf4472 100644 --- a/graphics/py-imaging/Makefile +++ b/graphics/py-imaging/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.9 2001/03/10 13:46:29 wiz Exp $ +# $NetBSD: Makefile,v 1.10 2002/01/02 10:21:44 hubertf Exp $ DISTNAME= Imaging-1.1.1 PKGNAME= py-imaging-1.1.1 @@ -23,7 +23,7 @@ do-configure: (cd ${WRKSRC}; ${MAKE} -f Makefile.pre.in boot) do-build: - (cd ${WRKSRC}/libImaging; ${MAKE}; cd ..; ${MAKE}) + (cd ${WRKSRC}/libImaging; ${SETENV} ${MAKE_ENV} ${MAKE}; cd ..; ${MAKE}) post-build: (cd ${WRKSRC}/PIL; python ${PREFIX}/lib/python2.0/compileall.py .) |