Date: Tue, 14 Apr 2015 03:44:18 +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: r383975 - head/sysutils/fusefs-exfat/files Message-ID: <201504140344.t3E3iI4v009675@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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@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']
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201504140344.t3E3iI4v009675>