From: Lennart Poettering Date: Fri, 25 Aug 2006 19:17:08 +0000 (+0000) Subject: fix python bindings for the service type database when GDBM is used X-Git-Url: https://git.meshlink.io/?a=commitdiff_plain;h=8c74afa380e584685b3cdb25ad2e92ea66f5cecf;p=catta fix python bindings for the service type database when GDBM is used git-svn-id: file:///home/lennart/svn/public/avahi/trunk@1278 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe --- diff --git a/avahi-python/avahi/Makefile.am b/avahi-python/avahi/Makefile.am index 20864c3..db604bc 100644 --- a/avahi-python/avahi/Makefile.am +++ b/avahi-python/avahi/Makefile.am @@ -32,7 +32,7 @@ ServiceTypeDatabase.py: ServiceTypeDatabase.py.in -e 's,@DBM\@,gdbm,g' \ -e 's,@FIRST_KEY\@,key = self.db.firstkey(),g' \ -e 's,@CHECK_KEY\@,while key is not None:,g' \ - -e 's,@NEXT_KEY\@,key = self.db.nextkey(),g' \ + -e 's,@NEXT_KEY\@,key = self.db.nextkey(key),g' \ -e 's,@pkgdatadir\@,$(pkgdatadir),g' $< > $@ chmod +x $@ endif