diff options
author | tron <tron> | 2001-03-13 13:54:48 +0000 |
---|---|---|
committer | tron <tron> | 2001-03-13 13:54:48 +0000 |
commit | 7a4e5367f6e0e7a9b03b2260acbf2c996f60cc05 (patch) | |
tree | c6886d1ebfe1b891787e00916b5c80d7e110b0a4 /graphics/gif2png | |
parent | 06a0f32a390e5f014c612beebcea0965d4c03c9d (diff) | |
download | pkgsrc-7a4e5367f6e0e7a9b03b2260acbf2c996f60cc05.tar.gz |
Use "CPPFLAGS" to configure include directories because setting
"INCLUDES" doesn't work.
Diffstat (limited to 'graphics/gif2png')
-rw-r--r-- | graphics/gif2png/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/graphics/gif2png/Makefile b/graphics/gif2png/Makefile index 1cc66a151e6..dba0eb083fc 100644 --- a/graphics/gif2png/Makefile +++ b/graphics/gif2png/Makefile @@ -1,5 +1,4 @@ -# $NetBSD: Makefile,v 1.14 2001/03/13 09:08:56 zuntum Exp $ -# +# $NetBSD: Makefile,v 1.15 2001/03/13 13:54:48 tron Exp $ DISTNAME= gif2png-2.4.2 CATEGORIES= graphics converters @@ -13,7 +12,9 @@ COMMENT= convert GIF files to PNG DEPENDS+= png>1.0.9:../../graphics/png GNU_CONFIGURE= YES -MAKE_ENV+= INCLUDES="-I${LOCALBASE}/include" +CONFIGURE_ENV+= CPPFLAGS="${CPPFLAGS}" + +CPPFLAGS+= -I${LOCALBASE}/include post-install: ${SED} s:/usr/bin/python:${PREFIX}/bin/python: \ |