Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 22 May 2015 10:18:59 +0000 (UTC)
From:      Dmitry Marakasov <amdmi3@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r387007 - head/multimedia/ffmpeg2theora/files
Message-ID:  <201505221018.t4MAIxjP029898@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: amdmi3
Date: Fri May 22 10:18:59 2015
New Revision: 387007
URL: https://svnweb.freebsd.org/changeset/ports/387007

Log:
  - Pass environment through scons to allow build with ccache
  
  PR:		200051
  Submitted by:	amdmi3
  Approved by:	maintainer timeout (wg, 2 weeks)

Modified:
  head/multimedia/ffmpeg2theora/files/patch-SConstruct

Modified: head/multimedia/ffmpeg2theora/files/patch-SConstruct
==============================================================================
--- head/multimedia/ffmpeg2theora/files/patch-SConstruct	Fri May 22 10:18:31 2015	(r387006)
+++ head/multimedia/ffmpeg2theora/files/patch-SConstruct	Fri May 22 10:18:59 2015	(r387007)
@@ -5,7 +5,7 @@
    BoolVariable('crossmingw', 'Set to 1 for crosscompile with mingw', 0)
  )
 -env = Environment(options = opts)
-+env = Environment(options = opts, CC = Split(os.environ['CC']))
++env = Environment(options = opts, ENV=os.environ, CC = Split(os.environ['CC']))
  Help(opts.GenerateHelpText(env))
  
  pkg_flags="--cflags --libs"



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201505221018.t4MAIxjP029898>