svn commit: r387007 - head/multimedia/ffmpeg2theora/files

Dmitry Marakasov amdmi3 at FreeBSD.org
Fri May 22 10:19:00 UTC 2015


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"


More information about the svn-ports-all mailing list