diff options
author | Han-Wen Nienhuys <hanwen@xs4all.nl> | 2004-07-11 02:09:07 +0000 |
---|---|---|
committer | Han-Wen Nienhuys <hanwen@xs4all.nl> | 2004-07-11 02:09:07 +0000 |
commit | 1493d37a97ec2e32c706d6706c476d22985a5682 (patch) | |
tree | 699a3a5e5da9deb5e7e7e08323c664e07f087578 /SConstruct | |
parent | 41f2e3bc032aed4124d8e8a7503bc4b9321e5bcc (diff) |
(class New_slur): new file. Score based slur
computations.
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/SConstruct b/SConstruct index 1a3e000eaf..e9adef066b 100644 --- a/SConstruct +++ b/SConstruct @@ -185,7 +185,6 @@ command = r"""python -c 'import sys; sys.stdout.write ("%s/include/python%s" % ( PYTHON_INCLUDE = os.popen (command).read () env.Append (CPPPATH = PYTHON_INCLUDE) - headers = ('sys/stat.h', 'assert.h', 'kpathsea/kpathsea.h', 'Python.h') for i in headers: if conf.CheckCHeader (i): @@ -352,7 +351,15 @@ env['MAKEINFO_PATH'] = ['.', '#/Documentation/user', ## TEXINFO_PAPERSIZE_OPTION= $(if $(findstring $(PAPERSIZE),a4),,-t @afourpaper) env['TEXINFO_PAPERSIZE_OPTION'] = '-t @afourpaper' - +#FIXME: ./python isn't sconsed yet, add scrdir/python for lilylib.py ... +env.Append (PYTHONPATH = [os.path.join (outdir, 'usr/lib/python'), + os.path.join (srcdir, 'buildscripts'), + os.path.join (srcdir, 'python')]) +# huh, aha? +env.Append (ENV = { 'PYTHONPATH' : string.join (env['PYTHONPATH'], + os.pathsep) } ) + +# GS_FONTPATH, GS_LIB? SConscript ('buildscripts/builder.py') #subdirs = ['mf',] |