Fix etc install root
This commit is contained in:
parent
6636cbff81
commit
50451b3676
1 changed files with 1 additions and 1 deletions
2
setup.py
2
setup.py
|
@ -7,7 +7,7 @@ import os
|
||||||
|
|
||||||
class install_pylock(distutils.command.install.install):
|
class install_pylock(distutils.command.install.install):
|
||||||
def run(self):
|
def run(self):
|
||||||
distutils.dir_util.copy_tree('etc', os.path.join(self.root, '/etc'),
|
distutils.dir_util.copy_tree('etc', os.path.join(self.root, 'etc'),
|
||||||
preserve_times=0, preserve_symlinks=1, verbose=1)
|
preserve_times=0, preserve_symlinks=1, verbose=1)
|
||||||
|
|
||||||
distutils.command.install.install.run(self)
|
distutils.command.install.install.run(self)
|
||||||
|
|
Reference in a new issue