Date: Mon, 5 May 2014 11:40:00 GMT From: dfilter@FreeBSD.ORG (dfilter service) To: chromium@FreeBSD.org Subject: Re: ports/187702: commit references a PR Message-ID: <201405051140.s45Be0Nx097352@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
The following reply was made to PR ports/187702; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/187702: commit references a PR Date: Mon, 5 May 2014 11:34:02 +0000 (UTC) Author: rene Date: Mon May 5 11:33:59 2014 New Revision: 352994 URL: http://svnweb.freebsd.org/changeset/ports/352994 QAT: https://qat.redports.org/buildarchive/r352994/ Log: Fix quoting of environment variables. PR: ports/187702 Submitted by: Dominic Fandrey <kamikaze@bsdforen.de> Modified: head/www/chromium/Makefile Modified: head/www/chromium/Makefile ============================================================================== --- head/www/chromium/Makefile Mon May 5 11:15:53 2014 (r352993) +++ head/www/chromium/Makefile Mon May 5 11:33:59 2014 (r352994) @@ -138,12 +138,12 @@ BUILDTYPE= Release GYP_DEFINES+= buildtype=Official .endif -CONFIGURE_ENV+= CC=${CC} \ - CXX=${CXX} \ +CONFIGURE_ENV+= CC="${CC}" \ + CXX="${CXX}" \ GYP_GENERATORS=ninja \ GYP_DEFINES="${GYP_DEFINES}" MAKE_ENV+= BUILDTYPE=${BUILDTYPE} \ - GPERF=${LOCALBASE}/bin/gperf + GPERF="${LOCALBASE}/bin/gperf" MAKE_ARGS+= -C out/${BUILDTYPE} .include <bsd.port.pre.mk> _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201405051140.s45Be0Nx097352>