summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2013-04-12 20:50:05 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2013-04-12 20:50:05 +0200
commit50451b3676f53665910937dcfdb6fccd6404bd45 (patch)
tree6c9e5b7284917c83e24754507633588e27b8d307
parent6636cbff81061bc270e4d21659fa3fba8eb3c87b (diff)
downloadpylock-50451b3676f53665910937dcfdb6fccd6404bd45.tar
pylock-50451b3676f53665910937dcfdb6fccd6404bd45.zip
Fix etc install root
-rwxr-xr-xsetup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 9034f0e..4fd24a3 100755
--- a/setup.py
+++ b/setup.py
@@ -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)