]> SALOME platform Git repositories - modules/kernel.git/commitdiff
Salome HOME
[E.A.] Improve the way that multilines are detected. It was
authoradam <adam>
Wed, 29 Oct 2008 09:28:56 +0000 (09:28 +0000)
committeradam <adam>
Wed, 29 Oct 2008 09:28:56 +0000 (09:28 +0000)
\
, now it is \s*
 to fix a Makefile.am with a line with

 i.e. 0 or more space after the

salome_adm/cmake_files/am2cmake.py

index a2d5bd0a601bcc9cf0dd6413ae9ebe36a2d65dc0..2c7f5f51f9d9019ecd9e5a0f482b155452344835 100644 (file)
@@ -7,6 +7,7 @@ import re
 
 p_multiline = re.compile(r"""
 \\           # One backslash
+\s*          # 0 or more space
 \n           # One CR
 """, re.VERBOSE)