diff options
| author | Michael Vogt <michael.vogt@ubuntu.com> | 2006-08-30 17:10:05 +0200 |
|---|---|---|
| committer | Michael Vogt <michael.vogt@ubuntu.com> | 2006-08-30 17:10:05 +0200 |
| commit | bf6bca741084f68031ae0bdd5491ca28061e4d9d (patch) | |
| tree | 8db9e855ed6983ed28a0d31a1045447f0f9bf41f | |
| parent | 23a2d248d3246ba70f883c1ffd41ac7b76b296b9 (diff) | |
| download | python-apt-bf6bca741084f68031ae0bdd5491ca28061e4d9d.tar.gz | |
* DistUpgrade/__init__.py:
- make it a module
* setup.py:
- install the dist-upgrader python module as well
- install the DistUpgrade/*.cfg stuff to /usr/share/update-manager
| -rw-r--r-- | DistUpgrade/__init__.py | 0 | ||||
| -rwxr-xr-x | setup.py | 7 |
2 files changed, 5 insertions, 2 deletions
diff --git a/DistUpgrade/__init__.py b/DistUpgrade/__init__.py new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/DistUpgrade/__init__.py @@ -67,7 +67,11 @@ setup(name='update-manager', ], data_files=[ ('share/update-manager/glade', - glob.glob("data/glade/*.glade") + glob.glob("data/glade/*.glade")+ + glob.glob("DistUpgrade/*.glade") + ), + ('share/update-manager/', + glob.glob("DistUpgrade/*.cfg") ), ('share/doc/update-manager', glob.glob("data/channels/README.channels") @@ -85,6 +89,5 @@ setup(name='update-manager', ('share/mime/packages', ["build/apt.xml"] ) - ] + I18NFILES + HELPFILES + ICONS, ) |
