summaryrefslogtreecommitdiffstats
path: root/avahi-python
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2010-06-25 01:50:03 +0200
committerLennart Poettering <lennart@poettering.net>2010-06-25 01:50:03 +0200
commitc8eacc0f13f6df529f2f40961e2ddb3a45dc9f93 (patch)
tree7c7874798b58eaf56a0d60da14affc0448cc2e35 /avahi-python
parentfbc9039f85aa2078fd66a7cec4fc266794ecf4ba (diff)
build-sys: make things more quiet
Diffstat (limited to 'avahi-python')
-rw-r--r--avahi-python/Makefile.am2
-rw-r--r--avahi-python/avahi/Makefile.am8
2 files changed, 5 insertions, 5 deletions
diff --git a/avahi-python/Makefile.am b/avahi-python/Makefile.am
index 4989b4b..d7febd6 100644
--- a/avahi-python/Makefile.am
+++ b/avahi-python/Makefile.am
@@ -34,7 +34,7 @@ pythonscripts = \
avahi-bookmarks
avahi-bookmarks: avahi-bookmarks.in
- sed -e 's,@PYTHON\@,$(PYTHON),g' $< > $@
+ $(AM_V_GEN)sed -e 's,@PYTHON\@,$(PYTHON),g' $< > $@ && \
chmod +x $@
bin_SCRIPTS = $(pythonscripts)
diff --git a/avahi-python/avahi/Makefile.am b/avahi-python/avahi/Makefile.am
index c0c9c34..b168682 100644
--- a/avahi-python/avahi/Makefile.am
+++ b/avahi-python/avahi/Makefile.am
@@ -28,12 +28,12 @@ if HAVE_GDBM
nodist_avahi_SCRIPTS = ServiceTypeDatabase.py
ServiceTypeDatabase.py: ServiceTypeDatabase.py.in
- sed -e 's,@PYTHON\@,$(PYTHON),g' \
+ $(AM_V_GEN)sed -e 's,@PYTHON\@,$(PYTHON),g' \
-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(key),g' \
- -e 's,@pkglibdir\@,$(pkglibdir),g' $< > $@
+ -e 's,@pkglibdir\@,$(pkglibdir),g' $< > $@ && \
chmod +x $@
endif
@@ -41,12 +41,12 @@ if HAVE_DBM
nodist_avahi_SCRIPTS = ServiceTypeDatabase.py
ServiceTypeDatabase.py: ServiceTypeDatabase.py.in
- sed -e 's,@PYTHON\@,$(PYTHON),g' \
+ $(AM_V_GEN)sed -e 's,@PYTHON\@,$(PYTHON),g' \
-e 's,@DBM\@,dbm,g' \
-e 's,@FIRST_KEY\@,keys = self.db.keys(),g' \
-e 's,@CHECK_KEY\@,for key in keys:,g' \
-e 's,@NEXT_KEY\@,,g' \
- -e 's,@pkglibdir\@,$(pkglibdir),g' $< > $@
+ -e 's,@pkglibdir\@,$(pkglibdir),g' $< > $@ && \
chmod +x $@
endif