From: ibs Date: Tue, 11 Aug 2015 07:36:08 +0000 (+0300) Subject: 0026543: genproj script parses CSF_VTK incorrectly X-Git-Tag: V7_0_0_beta~366 X-Git-Url: http://git.dev.opencascade.org/gitweb/?p=occt.git;a=commitdiff_plain;h=1e75b579dd3cec0a9ae3dbe17434ae00466fbca4;hp=1232a76693e6c81112fc85c3c3f86deec26cb778 0026543: genproj script parses CSF_VTK incorrectly the name of associative array at osutils:csfList method fixed --- diff --git a/adm/genproj.tcl b/adm/genproj.tcl index df352bc394..1308004e45 100644 --- a/adm/genproj.tcl +++ b/adm/genproj.tcl @@ -1080,7 +1080,7 @@ proc osutils:csfList { theOS theCsfLibsMap theCsfFrmsMap } { set aLibsMap(CSF_QT) "QtCore4.lib QtGui4.lib" # VTK - set aCsfMap(CSF_VTK) [osutils:vtkCsf "wnt"] + set aLibsMap(CSF_VTK) [osutils:vtkCsf "wnt"] } else { set aLibsMap(CSF_FREETYPE) "freetype" if { "$theOS" == "mac" } { @@ -1110,7 +1110,7 @@ proc osutils:csfList { theOS theCsfLibsMap theCsfFrmsMap } { set aLibsMap(CSF_GL2PS) "gl2ps" } if { "$::HAVE_VTK" == "true" } { - set aCsfMap(CSF_VTK) [osutils:vtkCsf "unix"] + set aLibsMap(CSF_VTK) [osutils:vtkCsf "unix"] } } }