16 lines
613 B
Plaintext
16 lines
613 B
Plaintext
$OpenBSD: patch-setup_py,v 1.3 2011/11/14 19:16:51 ajacoutot Exp $
|
|
|
|
Prevent empty directory from ending up in PLIST.
|
|
|
|
--- setup.py.orig Mon Nov 14 19:42:07 2011
|
|
+++ setup.py Mon Nov 14 20:13:57 2011
|
|
@@ -66,7 +66,7 @@ dist = setup(name='d-feet',
|
|
('share/icons/hicolor/48x48/apps', glob.glob("icons/48x48/*.png")),
|
|
('share/icons/hicolor/256x256/apps', glob.glob("icons/256x256/*.png")),
|
|
('share/applications', ['ui/dfeet.desktop']),
|
|
- ]+I18NFILES+HELPDOCS+HELPIMAGES+OMFFILES
|
|
+ ]+I18NFILES+HELPDOCS+HELPIMAGES
|
|
)
|
|
|
|
#Non-documented way of getting the final directory prefix
|