diff options
author | crees <crees@FreeBSD.org> | 2011-09-10 16:55:20 +0800 |
---|---|---|
committer | crees <crees@FreeBSD.org> | 2011-09-10 16:55:20 +0800 |
commit | 15b1dee1ef4a8975eb84f4dfa7474906b21fe5a3 (patch) | |
tree | 092552d601bfe2517ce779823b9fe8e28131c59d /audio | |
parent | 7feaf89e1b809b420cdae8fee695a2637d9b8d24 (diff) | |
download | freebsd-ports-gnome-15b1dee1ef4a8975eb84f4dfa7474906b21fe5a3.tar.gz freebsd-ports-gnome-15b1dee1ef4a8975eb84f4dfa7474906b21fe5a3.tar.zst freebsd-ports-gnome-15b1dee1ef4a8975eb84f4dfa7474906b21fe5a3.zip |
Portlint is mistaken-- CPPFLAGS are not passed to configure unless made explicit
Revert previous moving of CPPFLAGS outside CONFIGURE_ENV
Submitted by: Olivier Brisson <olivier@brisson.de>
Diffstat (limited to 'audio')
-rw-r--r-- | audio/musicpd/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/audio/musicpd/Makefile b/audio/musicpd/Makefile index 97625a37aa95..f418221d9d55 100644 --- a/audio/musicpd/Makefile +++ b/audio/musicpd/Makefile @@ -25,8 +25,8 @@ GNU_CONFIGURE= yes USE_GNOME= glib20 USE_RC_SUBR= ${PORTNAME} -CPPFLAGS+= "-I${LOCALBASE}/include" -LDFLAGS+= "-L${LOCALBASE}/lib" +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib" CFLAGS+= -I${PREFIX}/include |