Remove inlttool [] tags from POTFILE.in

2002-01-23  ERDI Gergo  <cactus@cactus.rulez.org>

	* Makefile.in.in (POTFILES): Remove inlttool [] tags from
	POTFILE.in
This commit is contained in:
ERDI Gergo 2002-01-25 00:30:43 +00:00 committed by ÉRDI Gergo
parent 0ad49d56c1
commit c711ceab01
2 changed files with 12 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2002-01-23 ERDI Gergo <cactus@cactus.rulez.org>
* Makefile.in.in (POTFILES): Remove inlttool [] tags from
POTFILE.in
2002-01-21 Zbigniew Chyla <cyba@gnome.pl>
* pl.po: Updated Polish translation by

View File

@ -234,6 +234,9 @@ update-po: Makefile
fi; \
done
# POTFILES is created from POTFILES.in by stripping comments, empty lines
# and Intltool tags (enclosed in square brackets), and appending a full
# relative path to them
POTFILES: POTFILES.in
( if test 'x$(srcdir)' != 'x.'; then \
posrcprefix='$(top_srcdir)/'; \
@ -241,8 +244,10 @@ POTFILES: POTFILES.in
posrcprefix="../"; \
fi; \
rm -f $@-t $@ \
&& (sed -e '/^#/d' -e '/^[ ]*$$/d' \
-e "s@.*@ $$posrcprefix& \\\\@" < $(srcdir)/$@.in \
&& (sed -e '/^#/d' \
-e "s/^\[.*\] +//" \
-e '/^[ ]*$$/d' \
-e "s@.*@ $$posrcprefix& \\\\@" < $(srcdir)/$@.in \
| sed -e '$$s/\\$$//') > $@-t \
&& chmod a-w $@-t \
&& mv $@-t $@ )