Mercurial > parpg-core
view site_scons/site_tools/cpython/test/basic/SConstruct-cflag @ 17:15107282d9eb
Redefined SYSCONFDIR installation path variable so that it appends APPNAME.
* Although this deviates from GNU standards this relatively minor change makes it easier to write paths that are portable to Windows.
author | M. George Hansen <technopolitica@gmail.com> |
---|---|
date | Thu, 09 Jun 2011 21:40:51 -1000 |
parents | 4706e0194af3 |
children |
line wrap: on
line source
env = Environment(tools=['cpython'], CPYTHON_PYC=1) hello = File('pyfiles/hello.py') hello2 = File('pyfiles/hello2.py') pydir = Dir('pyfiles2') env.InstallPython('pybuilderdir', [hello, hello2, pydir]) env.Alias('install', 'pybuilderdir')