diff --git a/MANIFEST.in b/MANIFEST.in index 6a7f9be49..caf2f3f03 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -7,6 +7,6 @@ include deluge.png include msgfmt.py recursive-include libtorrent/ * recursive-include glade/ *.glade -recursive-include pixmaps/ *.png +recursive-include pixmaps/ *.png *.svg recursive-include plugins/ * recursive-include po/ * diff --git a/setup.py b/setup.py index f7549451f..f0dcf3a96 100644 --- a/setup.py +++ b/setup.py @@ -231,6 +231,8 @@ class write_data_install_path(cmd.Command): conf_file.write(data) conf_file.close() + def get_outputs(self): return [] + class unwrite_data_install_path(cmd.Command): description = 'undoes write_data_install_path' @@ -247,6 +249,8 @@ class unwrite_data_install_path(cmd.Command): 'deluge', 'common.py') shutil.copyfile('src/common.py', dest) + def get_outputs(self): return [] + class build_trans(cmd.Command): description = 'Compile .po files into .mo files'