diff options
author | wiz <wiz@pkgsrc.org> | 2001-06-25 18:44:15 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2001-06-25 18:44:15 +0000 |
commit | a0c338703fe4edeed98dddbb2851f7137de2f13c (patch) | |
tree | e18b2fe8ac81caa0246a15e6fcc08a2d3dffd8ae /graphics/sane-frontends | |
parent | 1f007b2fcc3f0030e9a44ce1dfa38d821045f44e (diff) | |
download | pkgsrc-a0c338703fe4edeed98dddbb2851f7137de2f13c.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/sane-frontends')
-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" |