[Gnucash-changes] r13072 - gnucash/trunk - Check for any accidentally-distributed files not marked for translation.

Chris Shoemaker chris at cvs.gnucash.org
Wed Feb 1 19:07:58 EST 2006


Author: chris
Date: 2006-02-01 19:07:58 -0500 (Wed, 01 Feb 2006)
New Revision: 13072
Trac: http://svn.gnucash.org/trac/changeset/13072

Modified:
   gnucash/trunk/Makefile.am
   gnucash/trunk/po/POTFILES.skip
Log:
   Check for any accidentally-distributed files not marked for translation.


Modified: gnucash/trunk/Makefile.am
===================================================================
--- gnucash/trunk/Makefile.am	2006-02-01 22:57:30 UTC (rev 13071)
+++ gnucash/trunk/Makefile.am	2006-02-02 00:07:58 UTC (rev 13072)
@@ -161,6 +161,12 @@
 			e='yes'; \
 		fi; \
 	done; \
+	for X in `grep -v \# ${distdir}/po/POTFILES.skip` ; do \
+		if [ -f ${distdir}/$$X ] ; then \
+			echo $$X " is in POTFILES.skip but also in the dist.";\
+			e='yes'; \
+		fi; \
+	done; \
 	if test "$$e" = "yes" ; then exit 1; fi;
 
 distclean-local:

Modified: gnucash/trunk/po/POTFILES.skip
===================================================================
--- gnucash/trunk/po/POTFILES.skip	2006-02-01 22:57:30 UTC (rev 13071)
+++ gnucash/trunk/po/POTFILES.skip	2006-02-02 00:07:58 UTC (rev 13072)
@@ -1,4 +1,5 @@
-# These are files that we don't want to translate.
+# These are files that we don't want to translate, because they are
+# not distributed.
 src/network-utils/gnc-gpg.c
 src/import-export/csv/gnc-csv2glist.c
 src/business/business-core/gncBusPeriod.c



More information about the gnucash-changes mailing list