diff options
author | pav <pav@FreeBSD.org> | 2011-03-08 07:25:59 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2011-03-08 07:25:59 +0800 |
commit | 25d360f42fa66e0c895c991e50b3a4202c71685c (patch) | |
tree | bd430d439d705a54ff69ccc2e25e9e6e0e57d188 /emulators/gbe | |
parent | 1c81364e2d1bb9084d376f82f15e947ef315dd65 (diff) | |
download | freebsd-ports-gnome-25d360f42fa66e0c895c991e50b3a4202c71685c.tar.gz freebsd-ports-gnome-25d360f42fa66e0c895c991e50b3a4202c71685c.tar.zst freebsd-ports-gnome-25d360f42fa66e0c895c991e50b3a4202c71685c.zip |
- Fix build: CPPFLAGS are now part of default MAKE_ENV (trivial fix)
Reported by: pointyhat
Diffstat (limited to 'emulators/gbe')
-rw-r--r-- | emulators/gbe/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/emulators/gbe/Makefile b/emulators/gbe/Makefile index 41912d7180ae..9eb999d22925 100644 --- a/emulators/gbe/Makefile +++ b/emulators/gbe/Makefile @@ -17,8 +17,8 @@ COMMENT= Nintendo GameBoy(tm) emulator with GNU source code PLIST_FILES= bin/gbe WRKSRC= ${WRKDIR}/${PORTNAME} -MAKE_ENV= CPPFLAGS="${CPPFLAGS} -I${LOCALBASE}/include" \ - LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib" +CPPFLAGS+= -I${LOCALBASE}/include +MAKE_ENV= LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib" USE_XORG= x11 |