From: <sv...@va...> - 2008-06-15 13:32:08
|
Author: cerion Date: 2008-06-15 14:32:14 +0100 (Sun, 15 Jun 2008) New Revision: 438 Log: when updating valkyrie config file, use configured value for valgrind binary, instead of the old value. Modified: trunk/valkyrie/vk_config.cpp Modified: trunk/valkyrie/vk_config.cpp =================================================================== --- trunk/valkyrie/vk_config.cpp 2008-06-15 13:04:52 UTC (rev 437) +++ trunk/valkyrie/vk_config.cpp 2008-06-15 13:32:14 UTC (rev 438) @@ -555,8 +555,9 @@ /* but keep the new version! */ newMap[ EntryKey( "valkyrie", "version" ) ].mValue = vkVersion(); - /* ... and keep the new path to vk_logmerge */ + /* ... and set the binaries to configured values: */ newMap[ EntryKey( "valkyrie", "merge-exec" ) ].mValue = BIN_LOGMERGE; + newMap[ EntryKey( "valkyrie", "vg-exec" ) ].mValue = BIN_VALGRIND; /* write out new config */ if ( !writeConfig( newMap, true ) ) { |