aboutsummaryrefslogtreecommitdiff
path: root/sysutils/fusefs-exfat
diff options
context:
space:
mode:
authorDmitry Marakasov <amdmi3@FreeBSD.org>2015-04-14 03:44:17 +0000
committerDmitry Marakasov <amdmi3@FreeBSD.org>2015-04-14 03:44:17 +0000
commit0f57ec2be035e094ed4009d3a3200e1f25464e0a (patch)
tree4815777fb3ac11fc64d869d91577d127f89c6f80 /sysutils/fusefs-exfat
parent3a807c07d1517351b48602251423de5345194b11 (diff)
downloadports-0f57ec2be035e094ed4009d3a3200e1f25464e0a.tar.gz
ports-0f57ec2be035e094ed4009d3a3200e1f25464e0a.zip
- Make scons preserve environment to fix build with ccache
PR: 199425 Submitted by: amdmi3 Approved by: samm@os2.kiev.ua (maintainer)
Notes
Notes: svn path=/head/; revision=383975
Diffstat (limited to 'sysutils/fusefs-exfat')
-rw-r--r--sysutils/fusefs-exfat/files/patch-SConstruct14
1 files changed, 14 insertions, 0 deletions
diff --git a/sysutils/fusefs-exfat/files/patch-SConstruct b/sysutils/fusefs-exfat/files/patch-SConstruct
new file mode 100644
index 000000000000..12f927090daa
--- /dev/null
+++ b/sysutils/fusefs-exfat/files/patch-SConstruct
@@ -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']