diff options
author | Tijl Coosemans <tijl@FreeBSD.org> | 2014-05-20 19:32:39 +0000 |
---|---|---|
committer | Tijl Coosemans <tijl@FreeBSD.org> | 2014-05-20 19:32:39 +0000 |
commit | f191d6b8872215d88c30b5942a9319854b9e98ba (patch) | |
tree | 2ae9e1593b29ed28637a9cbae361c9e3af678802 /graphics/freeimage | |
parent | - Use libtool (diff) |
Quote ${CC} and similar variables in MAKE_ARGS.
Reported by: Dominic Fandrey <kamikaze@bsdforen.de>
Notes
Notes:
svn path=/head/; revision=354670
Diffstat (limited to 'graphics/freeimage')
-rw-r--r-- | graphics/freeimage/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/freeimage/Makefile b/graphics/freeimage/Makefile index 274bcc2c005c..0b62abc5566d 100644 --- a/graphics/freeimage/Makefile +++ b/graphics/freeimage/Makefile @@ -15,7 +15,7 @@ USES= gmake dos2unix zip DOS2UNIX_FILES= Source/LibOpenJPEG/opj_malloc.h USE_LDCONFIG= yes WRKSRC= ${WRKDIR}/FreeImage -MAKE_ARGS= CC=${CC} CPP=${CPP} CXX=${CXX} +MAKE_ARGS= CC="${CC}" CPP="${CPP}" CXX="${CXX}" CFLAGS+= -fexceptions -fvisibility=hidden |