diff options
author | hubertf <hubertf> | 2002-01-02 10:21:44 +0000 |
---|---|---|
committer | hubertf <hubertf> | 2002-01-02 10:21:44 +0000 |
commit | ceb39b778889091a0e07ab227dc15b1793837513 (patch) | |
tree | 0227cafa5ddca2c2b49a309fba582cc15b214552 /graphics | |
parent | 5102620f61f741c73ca7aa728314065bf6facfa3 (diff) | |
download | pkgsrc-ceb39b778889091a0e07ab227dc15b1793837513.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???
Diffstat (limited to 'graphics')
-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 .) |