From: <pat...@us...> - 2007-06-11 16:29:49
|
Revision: 587 http://svn.sourceforge.net/xml-cppdom/?rev=587&view=rev Author: patrickh Date: 2007-06-11 09:29:49 -0700 (Mon, 11 Jun 2007) Log Message: ----------- MFT r586: Ensure that the correct paths are used in the generated .fpc file. Modified Paths: -------------- tags/0.7.7/SConstruct Modified: tags/0.7.7/SConstruct =================================================================== --- tags/0.7.7/SConstruct 2007-06-11 16:28:03 UTC (rev 586) +++ tags/0.7.7/SConstruct 2007-06-11 16:29:49 UTC (rev 587) @@ -210,14 +210,14 @@ # Build up substitution map submap = { '@provides@' : provides, - '@prefix@' : base_inst_paths['base'], + '@prefix@' : inst_paths['base'], '@exec_prefix@' : '${prefix}', '@cppdom_cxxflags@' : '', - '@includedir@' : base_inst_paths['include'], + '@includedir@' : inst_paths['include'], '@cppdom_extra_cxxflags@' : '', '@cppdom_extra_include_dirs@' : '', '@cppdom_libs@' : "-l%s" % cppdom_shared_libname, - '@libdir@' : base_inst_paths['lib'], + '@libdir@' : inst_paths['lib'], '@arch@' : arch, '@version@' : cppdom_version_str } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |