Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 431056
Collapse All | Expand All

(-)setup.py (-2 / +2 lines)
Lines 262-268 Link Here
262
        content = self.scan_content()
262
        content = self.scan_content()
263
263
264
        content = self.content
264
        content = self.content
265
        directories = set(map(os.path.dirname, content.itervalues()))
265
        directories = set(map(os.path.dirname, content.values()))
266
        directories.discard('')
266
        directories.discard('')
267
        for x in sorted(directories):
267
        for x in sorted(directories):
268
            self.mkpath(os.path.join(self.path, x))
268
            self.mkpath(os.path.join(self.path, x))
Lines 267-273 Link Here
267
        for x in sorted(directories):
267
        for x in sorted(directories):
268
            self.mkpath(os.path.join(self.path, x))
268
            self.mkpath(os.path.join(self.path, x))
269
269
270
        for src, dst in sorted(content.iteritems()):
270
        for src, dst in sorted(content.items()):
271
            self.copy_file(
271
            self.copy_file(
272
                os.path.join(self.source_path, src),
272
                os.path.join(self.source_path, src),
273
                os.path.join(self.path, dst))
273
                os.path.join(self.path, dst))

Return to bug 431056