Revert "patch for waflib internals to allow tarball to be created even when using...
authorPaul Davis <paul@linuxaudiosystems.com>
Thu, 25 Aug 2016 17:43:47 +0000 (13:43 -0400)
committerPaul Davis <paul@linuxaudiosystems.com>
Thu, 25 Aug 2016 17:43:47 +0000 (13:43 -0400)
This was not supposed to go public.

This reverts commit e8f7f458e12d16fb8e441eccbaa7520d103b50af.

tools/waflib-tar.patch [deleted file]

diff --git a/tools/waflib-tar.patch b/tools/waflib-tar.patch
deleted file mode 100644 (file)
index 9858590..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
---- .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'