[svn-r27903] Add extra line for replacement from revision 27898

This commit is contained in:
Allen Byrne 2015-09-28 15:23:46 -05:00
parent 11201a24ef
commit 431c69474c

View File

@ -12,6 +12,7 @@ if (FILE_PARSE)
# adding a perl command to find and replace this function declaration in
# H5LTparse.c.
file (READ ${FILE_PARSE} TEST_STREAM)
string (REGEX REPLACE "int yyparse" "hid_t yyparse" TEST_STREAM "${TEST_STREAM}")
string (REGEX REPLACE "int\nyyparse" "hid_t\nyyparse" TEST_STREAM "${TEST_STREAM}")
string (REGEX REPLACE "int H5LTyyparse" "hid_t H5LTyyparse" TEST_STREAM "${TEST_STREAM}")
file (WRITE ${FILE_PARSE} "${TEST_STREAM}")