summarylogtreecommitdiffstats
path: root/root-src-fix.patch
diff options
context:
space:
mode:
authorJaroslav Lichtblau2014-11-30 12:08:52 +0100
committerJaroslav Lichtblau2014-11-30 12:08:52 +0100
commit53d86b71be0ffbdec279715854005e37ac009e37 (patch)
treef524578a8c156b3cddc72c9cb54b87c20f3e2a24 /root-src-fix.patch
parent47b47d47bb5f7555b796a9ab4feb6924a7a9d946 (diff)
downloadaur-link-backup.tar.gz
link-backup-0.8-6
Diffstat (limited to 'root-src-fix.patch')
-rw-r--r--root-src-fix.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/root-src-fix.patch b/root-src-fix.patch
deleted file mode 100644
index a822ef61f029..000000000000
--- a/root-src-fix.patch
+++ /dev/null
@@ -1,22 +0,0 @@
---- lb.py~ 2008-05-13 22:56:36.000000000 -0400
-+++ lb.py 2008-05-13 22:56:55.000000000 -0400
-@@ -281,6 +281,8 @@
- """
- def __init__(self, path):
- self.path = os.path.abspath(path)
-+ if self.path == os.sep:
-+ self.path = ""
- self.lenbase = len('%s%s' % (self.path, os.sep))
- self.logpath = join(self.path, 'log')
- if not os.path.exists(self.path):
-@@ -751,7 +753,9 @@
- def build_filelist_from_tree(treepath):
- class ListBuilder:
- def __init__(self, basepath):
-- self.lenbase = len('%s%s' % (basepath, os.sep))
-+ if basepath == os.sep:
-+ basepath = ""
-+ self.lenbase = len('%s%s' % (basepath, os.sep))
-
- def callback(self, arg, dirpath, filelist):
- for file in filelist: