diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2013-04-12 20:50:05 +0200 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2013-04-12 20:50:05 +0200 |
commit | 50451b3676f53665910937dcfdb6fccd6404bd45 (patch) | |
tree | 6c9e5b7284917c83e24754507633588e27b8d307 | |
parent | 6636cbff81061bc270e4d21659fa3fba8eb3c87b (diff) | |
download | pylock-50451b3676f53665910937dcfdb6fccd6404bd45.tar pylock-50451b3676f53665910937dcfdb6fccd6404bd45.zip |
Fix etc install root
-rwxr-xr-x | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -7,7 +7,7 @@ import os class install_pylock(distutils.command.install.install): 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) distutils.command.install.install.run(self) |