svn commit: r396704 - head/sysutils/exfat-utils/files

Dmitry Marakasov amdmi3 at FreeBSD.org
Fri Sep 11 18:48:42 UTC 2015


Author: amdmi3
Date: Fri Sep 11 18:48:41 2015
New Revision: 396704
URL: https://svnweb.freebsd.org/changeset/ports/396704

Log:
  - Fix build with ccache by making SCons preserve environment
  
  PR:		202723
  Submitted by:	amdmi3
  Approved by:	maintainer timeout (samm at os2.kiev.ua, 2 weeks)

Added:
  head/sysutils/exfat-utils/files/
  head/sysutils/exfat-utils/files/patch-SConstruct   (contents, props changed)

Added: head/sysutils/exfat-utils/files/patch-SConstruct
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/exfat-utils/files/patch-SConstruct	Fri Sep 11 18:48:41 2015	(r396704)
@@ -0,0 +1,14 @@
+--- SConstruct.orig	2013-02-02 14:14:34 UTC
++++ SConstruct
+@@ -22,10 +22,7 @@ import os
+ import platform
+ import SCons
+ 
+-env = Environment(**ARGUMENTS)
+-for var in ['PATH', 'SYSROOT']:
+-	if var in os.environ:
+-		env['ENV'][var] = os.environ[var]
++env = Environment(ENV = os.environ, **ARGUMENTS)
+ 
+ destdir = env.get('DESTDIR', '/sbin');
+ libs = ['exfat']


More information about the svn-ports-head mailing list