forked from Lainports/opnsense-ports
34 lines
1,022 B
Python
34 lines
1,022 B
Python
--- setup.py.orig 2020-09-19 02:24:26 UTC
|
|
+++ setup.py
|
|
@@ -419,8 +419,8 @@ class VMMDistribution(distutils.dist.Distribution):
|
|
]
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
- self.no_update_icon_cache = False
|
|
- self.no_compile_schemas = False
|
|
+ self.no_update_icon_cache = True
|
|
+ self.no_compile_schemas = True
|
|
distutils.dist.Distribution.__init__(self, *args, **kwargs)
|
|
|
|
|
|
@@ -492,11 +492,9 @@ distutils.core.setup(
|
|
"build/virt-xml"]),
|
|
|
|
data_files=[
|
|
- ("share/glib-2.0/schemas",
|
|
- ["data/org.virt-manager.virt-manager.gschema.xml"]),
|
|
("share/virt-manager/ui", glob.glob("ui/*.ui")),
|
|
|
|
- ("share/man/man1", [
|
|
+ ("man/man1", [
|
|
"man/virt-manager.1",
|
|
"man/virt-install.1",
|
|
"man/virt-clone.1",
|
|
@@ -528,7 +526,6 @@ distutils.core.setup(
|
|
|
|
'install': my_install,
|
|
'install_data': my_install_data,
|
|
- 'install_egg_info': my_egg_info,
|
|
|
|
'configure': configure,
|
|
|