From: <pat...@us...> - 2007-08-01 15:06:42
|
Revision: 622 http://xml-cppdom.svn.sourceforge.net/xml-cppdom/?rev=622&view=rev Author: patrickh Date: 2007-08-01 08:06:44 -0700 (Wed, 01 Aug 2007) Log Message: ----------- Append the "64" suffix to the lib installatino path before tacking on the "debug" subdirectory. Installing to lib/debug64 doesn't make a lot of sense to me. Modified Paths: -------------- trunk/SConstruct Modified: trunk/SConstruct =================================================================== --- trunk/SConstruct 2007-08-01 15:03:55 UTC (rev 621) +++ trunk/SConstruct 2007-08-01 15:06:44 UTC (rev 622) @@ -175,12 +175,12 @@ inst_paths = copy.copy(base_inst_paths) inst_paths['libPrefix'] = pj(inst_paths['flagpollPrefix'], 'lib') + if "x64" == combo["arch"]: + inst_paths['lib'] = inst_paths['lib'] + '64' + inst_paths['libPrefix'] = inst_paths['libPrefix'] + '64' if "debug" == combo["type"]: inst_paths["lib"] = pj(inst_paths["lib"],"debug") inst_paths['libPrefix'] = pj(inst_paths['libPrefix'],'debug') - if "x64" == combo["arch"]: - inst_paths['lib'] = inst_paths['lib'] + '64' - inst_paths['libPrefix'] = inst_paths['libPrefix'] + '64' cppdom_shared_libname = 'cppdom' + shared_lib_suffix + version_suffix cppdom_static_libname = 'cppdom' + static_lib_suffix + version_suffix This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |