Skip to content

Commit 4c20b86

Browse files
Merge pull request #643 from bartlettroscoe/640_CorrectlySplitExtraCmakeOptions
Correctly splitting the --extra-cmake-options input
2 parents cf6f9ec + 27262c6 commit 4c20b86

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tribits/ci_support/CheckinTest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1448,7 +1448,7 @@ def runBuildTestCase(inOptions, tribitsGitRepos, buildTestCase, timings):
14481448
if inOptions.useNinja:
14491449
cmakeBaseOptions.append("-GNinja")
14501450
if inOptions.extraCmakeOptions:
1451-
cmakeBaseOptions.extend(commandLineOptionsToList(inOptions.extraCmakeOptions))
1451+
cmakeBaseOptions.extend(inOptions.extraCmakeOptions.split(','))
14521452
cmakeBaseOptions.append(cmakeScopedDefine(projectName,
14531453
"TRIBITS_DIR:PATH", inOptions.tribitsDir))
14541454
cmakeBaseOptions.append(cmakeScopedDefine(projectName,

0 commit comments

Comments
 (0)