diff options
author | wiz <wiz> | 2001-06-25 18:44:15 +0000 |
---|---|---|
committer | wiz <wiz> | 2001-06-25 18:44:15 +0000 |
commit | 9a9d2dedd8fdc0e23c8b9ad968aac66c7ebc6fb7 (patch) | |
tree | e18b2fe8ac81caa0246a15e6fcc08a2d3dffd8ae /graphics | |
parent | 1f4604e06c1ccc36de14fd61567a8eec1af0b4e8 (diff) | |
download | pkgsrc-9a9d2dedd8fdc0e23c8b9ad968aac66c7ebc6fb7.tar.gz |
Move -I${LOCALBASE}/include from CFLAGS to CPPFLAGS per pkg/13240
(both work for me, but changing it seems to help Anthony Mallet).
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/sane-frontends/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/graphics/sane-frontends/Makefile b/graphics/sane-frontends/Makefile index 08cd36009f4..4ffa10730bb 100644 --- a/graphics/sane-frontends/Makefile +++ b/graphics/sane-frontends/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2001/02/28 11:25:26 wiz Exp $ +# $NetBSD: Makefile,v 1.4 2001/06/25 18:44:15 wiz Exp $ # DISTNAME= sane-frontends-1.0.4 @@ -27,6 +27,8 @@ USE_LIBTOOL= yes LTCONFIG_OVERRIDE=${WRKSRC}/ltconfig # -O to work around a bug with -O2 and egcs. -CFLAGS= -O -I${LOCALBASE}/include +CFLAGS= -O +# to find gimp includes +CPPFLAGS= -I${LOCALBASE}/include .include "../../mk/bsd.pkg.mk" |