mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-08 15:54:57 +01:00
Revert "Revert "patch for waflib internals to allow tarball to be created even when using UTF-8 non-Latin filenames""
There was never any problem with this going public! Stupid Paul.
This reverts commit 6063ec2dbb.
This commit is contained in:
parent
6063ec2dbb
commit
a639e4492f
1 changed files with 11 additions and 0 deletions
11
tools/waflib-tar.patch
Normal file
11
tools/waflib-tar.patch
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
--- .waf-1.6.11-06ee4b7efbeab1252ed3b11499834d2a/waflib/Scripting.py~ 2016-07-14 16:34:10.741387174 -0400
|
||||
+++ .waf-1.6.11-06ee4b7efbeab1252ed3b11499834d2a/waflib/Scripting.py 2016-08-11 11:45:11.833131519 -0400
|
||||
@@ -252,7 +252,7 @@
|
||||
return node.abspath()
|
||||
def add_tar_file(self,x,tar):
|
||||
p=self.get_tar_path(x)
|
||||
- tinfo=tar.gettarinfo(name=p,arcname=self.get_tar_prefix()+'/'+x.path_from(self.base_path))
|
||||
+ tinfo=tar.gettarinfo(name=p,arcname=self.get_tar_prefix()+'/'+(x.path_from(self.base_path)).decode ('utf8'))
|
||||
tinfo.uid=0
|
||||
tinfo.gid=0
|
||||
tinfo.uname='root'
|
||||
Loading…
Add table
Add a link
Reference in a new issue