CVS commit by goutte: Split formeditor.pot out of kexi.pot (which had the strings too) (This is made by "pruning" the formeditor directory when using find.) CCMAIL: kde-i18n-doc@kde.org M +8 -2 Makefile.am 1.93 --- koffice/kexi/Makefile.am #1.92:1.93 @@ -48,12 +48,18 @@ METASOURCES = AUTO +# Note: koffice/kexi/formeditor should be kept out of kexi.pot +# as it might get moved out of Kexi. +# +# If a second directory must be "pruned", the syntax becomes: +# find . \( -name formeditor -o -name test \) -prune , -name \*.ui +# (The comma is needed or the pruned directory name would be printed to stdout) messages: rc.cpp rm -f tips.cpp (cd data && $(PREPARETIPS) > ../tips.cpp) - LIST="data/*.rc `find . -name \*.ui`"; \ + LIST="data/*.rc `find . -name formeditor -prune , -name \*.ui`"; \ if test -n "$$LIST"; then \ $(EXTRACTRC) $$LIST >> rc.cpp; \ fi; \ - LIST=`find . -name \*.h -o -name \*.hh -o -name \*.H -o -name \*.hxx -o -name \*.hpp -o -name \*.cpp -o -name \*.cc -o -name \*.cxx -o -name \*.ecpp -o -name \*.C`; \ + LIST=`find . -name formeditor -prune , -name \*.h -o -name \*.cpp`; \ if test -n "$$LIST"; then \ $(XGETTEXT) $$LIST -o $(podir)/kexi.pot; \