← Back to team overview

yade-dev team mailing list archive

[Branch ~yade-pkg/yade/git-trunk] Rev 3829: Fix split delimiter

 

------------------------------------------------------------
revno: 3829
committer: Anton Gladky <gladky.anton@xxxxxxxxx>
timestamp: Fri 2014-02-28 09:22:32 +0100
message:
  Fix split delimiter
  
  Thanks to Alexander Eulitz for noting that
modified:
  py/config.py.in


--
lp:yade
https://code.launchpad.net/~yade-pkg/yade/git-trunk

Your team Yade developers is subscribed to branch lp:yade.
To unsubscribe from this branch go to https://code.launchpad.net/~yade-pkg/yade/git-trunk/+edit-subscription
=== modified file 'py/config.py.in'
--- py/config.py.in	2012-07-18 05:33:52 +0000
+++ py/config.py.in	2014-02-28 08:22:32 +0000
@@ -2,7 +2,7 @@
 """
 Compile-time configuration for yade.
 
-Template file is processed by scons to create the actual configuration at build-time.
+Template file is processed by cmake to create the actual configuration at build-time.
 """
 import os,datetime,os.path
 prefix='${runtimePREFIX}' if not os.environ.has_key('YADE_PREFIX') else os.environ['YADE_PREFIX']
@@ -14,7 +14,7 @@
 libDir=os.path.abspath(prefix+'/'+libPATH+'/yade${SUFFIX}')
 confDir=os.environ['HOME']+'/.yade${SUFFIX}'
 libstdcxx='${libstdcxx}'
-features='${features}'.split(',')
+features='${features}'.split(' ')
 revision='${realVersion}'
 version='${version}'
 sourceRoot='${sourceRoot}'