From f7a880b9c81ef6dc0f443b382d4e1c5364a2f71f Mon Sep 17 00:00:00 2001 From: adam Date: Wed, 29 Oct 2008 09:28:56 +0000 Subject: [PATCH] [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 --- salome_adm/cmake_files/am2cmake.py | 1 + 1 file changed, 1 insertion(+) 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) -- 2.39.2