6fee6b8bae
D-Feet is a D-Bus debugger written in PyGtk+. Current features: * View names on any bus * View exported objects, interfaces, methods and signals * View the full command line of services on the bus * Execute methods with parameters on the bus and see their return values
16 lines
601 B
Plaintext
16 lines
601 B
Plaintext
$OpenBSD: patch-setup_py,v 1.1.1.1 2009/01/19 17:03:32 jasper Exp $
|
|
|
|
Prevent empty directory from ending up in PLIST.
|
|
|
|
--- setup.py.orig Mon Jan 19 16:03:29 2009
|
|
+++ setup.py Mon Jan 19 16:04:14 2009
|
|
@@ -58,7 +58,7 @@ dist = setup(name='d-feet',
|
|
('share/icons/hicolor/16x16/apps', glob.glob("icons/16x16/*.png")),
|
|
('share/icons/hicolor/48x48/apps', ['ui/dfeet-icon.png']),
|
|
('share/applications', ['ui/dfeet.desktop']),
|
|
- ]+I18NFILES+HELPDOCS+HELPIMAGES+OMFFILES
|
|
+ ]+I18NFILES+HELPDOCS+HELPIMAGES
|
|
)
|
|
|
|
#Non-documented way of getting the final directory prefix
|