From: adam Date: Wed, 29 Oct 2008 09:28:56 +0000 (+0000) Subject: [E.A.] Improve the way that multilines are detected. It was X-Git-Tag: V5_1_0a3~2 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=f7a880b9c81ef6dc0f443b382d4e1c5364a2f71f;p=modules%2Fkernel.git [E.A.] Improve the way that multilines are detected. It was \ , now it is \s* to fix a Makefile.am with a line with i.e. 0 or more space after the --- diff --git a/salome_adm/cmake_files/am2cmake.py b/salome_adm/cmake_files/am2cmake.py index a2d5bd0a6..2c7f5f51f 100644 --- a/salome_adm/cmake_files/am2cmake.py +++ b/salome_adm/cmake_files/am2cmake.py @@ -7,6 +7,7 @@ import re p_multiline = re.compile(r""" \\ # One backslash +\s* # 0 or more space \n # One CR """, re.VERBOSE)