svn commit: r383975 - head/sysutils/fusefs-exfat/files

Dmitry Marakasov amdmi3 at FreeBSD.org
Tue Apr 14 03:44:18 UTC 2015


Author: amdmi3
Date: Tue Apr 14 03:44:17 2015
New Revision: 383975
URL: https://svnweb.freebsd.org/changeset/ports/383975

Log:
  - Make scons preserve environment to fix build with ccache
  
  PR:		199425
  Submitted by:	amdmi3
  Approved by:	samm at os2.kiev.ua (maintainer)

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

Added: head/sysutils/fusefs-exfat/files/patch-SConstruct
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/fusefs-exfat/files/patch-SConstruct	Tue Apr 14 03:44:17 2015	(r383975)
@@ -0,0 +1,14 @@
+--- SConstruct.orig	2015-04-13 20:50:01.073662000 +0300
++++ SConstruct	2015-04-13 20:54:33.231753000 +0300
+@@ -22,10 +22,7 @@
+ 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