diff options
| author | Lennart Poettering <lennart@poettering.net> | 2008-12-12 20:31:42 +0100 | 
|---|---|---|
| committer | Lennart Poettering <lennart@poettering.net> | 2008-12-12 20:31:42 +0100 | 
| commit | 89c54c16f125331697298428e41ff1fd69afa23c (patch) | |
| tree | 3c07eb3d4f8bfa55d38c67a11c46240f3976d856 | |
| parent | 915e39ec8bb5f2dcc8b3b80f6eb824b7e5b9490d (diff) | |
Install avahi bookmarks, even if no pygtk is available.
Original patch by Stanislav Brabec.
Re #222
| -rw-r--r-- | avahi-python/Makefile.am | 2 | ||||
| -rwxr-xr-x | avahi-python/avahi-bookmarks.in | 2 | 
2 files changed, 1 insertions, 3 deletions
diff --git a/avahi-python/Makefile.am b/avahi-python/Makefile.am index 09ad6de..4989b4b 100644 --- a/avahi-python/Makefile.am +++ b/avahi-python/Makefile.am @@ -29,7 +29,6 @@ SUBDIRS=avahi avahi-discover  if HAVE_PYTHON  if HAVE_PYTHON_DBUS -if HAVE_PYGTK  pythonscripts = \  	avahi-bookmarks @@ -43,4 +42,3 @@ CLEANFILES = $(pythonscripts)  endif  endif -endif diff --git a/avahi-python/avahi-bookmarks.in b/avahi-python/avahi-bookmarks.in index a1e8d0c..172abb3 100755 --- a/avahi-python/avahi-bookmarks.in +++ b/avahi-python/avahi-bookmarks.in @@ -24,7 +24,7 @@ import sys, getopt, os  try:      import avahi, gobject, dbus  except ImportError: -    print "Sorry, to use this tool you need to install Avahi, pygtk and python-dbus." +    print "Sorry, to use this tool you need to install Avahi and python-dbus."      sys.exit(1)  try:  | 
