This patch ensures that files like de_Extended.lyx~ do not get added to 
lib/doc/Makefile.depend if they exist. This goes in now.


Georg
Index: lib/doc/depend.py
===================================================================
--- lib/doc/depend.py	(Revision 14491)
+++ lib/doc/depend.py	(Arbeitskopie)
@@ -53,7 +53,7 @@ def main(argv):
     # What are the languages available? And its documents?
     languages = {}
     srcdir = os.path.dirname(argv[0])
-    for file in glob(srcdir + '/*'):
+    for file in glob(srcdir + '/*.lyx'):
         file = os.path.basename(file)
         lang = lang_pattern.match(file)
         if lang:

Reply via email to