|
From: <pat...@us...> - 2007-06-11 16:28:03
|
Revision: 586
http://svn.sourceforge.net/xml-cppdom/?rev=586&view=rev
Author: patrickh
Date: 2007-06-11 09:28:03 -0700 (Mon, 11 Jun 2007)
Log Message:
-----------
Ensure that the correct paths are used in the generated .fpc file.
Modified Paths:
--------------
trunk/SConstruct
Modified: trunk/SConstruct
===================================================================
--- trunk/SConstruct 2007-06-11 16:11:28 UTC (rev 585)
+++ trunk/SConstruct 2007-06-11 16:28:03 UTC (rev 586)
@@ -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.
|