From: Lennart Poettering Date: Sun, 20 Aug 2006 01:16:06 +0000 (+0000) Subject: fix build when neither HAVE_GDBM nor HAVE_DBM is specified X-Git-Tag: upstream/0.6.31~578 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=dc8c605b464a608ec330313c3c0812975069474c;p=platform%2Fupstream%2Favahi.git fix build when neither HAVE_GDBM nor HAVE_DBM is specified git-svn-id: file:///home/lennart/svn/public/avahi/trunk@1246 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe --- diff --git a/avahi-python/avahi/Makefile.am b/avahi-python/avahi/Makefile.am index 5673d5e..20864c3 100644 --- a/avahi-python/avahi/Makefile.am +++ b/avahi-python/avahi/Makefile.am @@ -23,9 +23,10 @@ if HAVE_PYTHON avahidir = $(pythondir)/avahi -avahi_SCRIPTS = ServiceTypeDatabase.py if HAVE_GDBM +avahi_SCRIPTS = ServiceTypeDatabase.py + ServiceTypeDatabase.py: ServiceTypeDatabase.py.in sed -e 's,@PYTHON\@,$(PYTHON),g' \ -e 's,@DBM\@,gdbm,g' \ @@ -37,6 +38,8 @@ ServiceTypeDatabase.py: ServiceTypeDatabase.py.in endif if HAVE_DBM +avahi_SCRIPTS = ServiceTypeDatabase.py + ServiceTypeDatabase.py: ServiceTypeDatabase.py.in sed -e 's,@PYTHON\@,$(PYTHON),g' \ -e 's,@DBM\@,dbm,g' \