summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Resch <andrewresch@gmail.com>2008-12-11 03:55:30 +0000
committerAndrew Resch <andrewresch@gmail.com>2008-12-11 03:55:30 +0000
commit3f2ef1b457b174b2e81970b1f78b5e5f492cae72 (patch)
treee8a826c15dfa0e36b68fb3acd7e7d2e4bdab471c
parente4d40a3bb3851906c66c42181e03769c4cc8805c (diff)
downloaddeluge-3f2ef1b457b174b2e81970b1f78b5e5f492cae72.tar.gz
deluge-3f2ef1b457b174b2e81970b1f78b5e5f492cae72.tar.bz2
deluge-3f2ef1b457b174b2e81970b1f78b5e5f492cae72.zip
Fix setup.py in 1.0.7
-rw-r--r--setup.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 2584ec56d..67abdcd48 100644
--- a/setup.py
+++ b/setup.py
@@ -28,6 +28,7 @@ from setuptools import setup, find_packages, Extension
from distutils import cmd, sysconfig
from distutils.command.build import build as _build
from distutils.command.clean import clean as _clean
+from distutils.command.install import install
import msgfmt
import os
@@ -308,7 +309,8 @@ cmdclass = {
'build_trans': build_trans,
'build_plugins': build_plugins,
'clean_plugins': clean_plugins,
- 'clean': clean
+ 'clean': clean,
+ 'install': install
}
# Data files to be installed to the system