Patch #103587: Fix typo that broke the install_data command; caught by

Uche Ogbuji
This commit is contained in:
Andrew M. Kuchling 2001-02-05 17:43:11 +00:00
parent 0872d9d2c2
commit 1b26b6a5f1
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ class install_data (Command):
dir = change_root(self.root, dir)
self.mkpath(dir)
for data in f[1]:
data = convert_path(f[1])
data = convert_path(data)
(out, _) = self.copy_file(data, dir)
self.outfiles.append(out)