Fix whitespace.

git-svn-id: svn://localhost/ardour2/branches/3.0@10166 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
David Robillard 2011-09-29 21:36:31 +00:00
parent 40f5051527
commit e7403295fe
2 changed files with 8 additions and 8 deletions

View File

@ -282,7 +282,7 @@ def _doPyp(infileName):
Does the main work of preprocessing.
Takes 'infileName' as a filename, opens and processes it,
and returns the processed file as a string
Note - this works recursively.
"""
outStr = ''
@ -293,7 +293,7 @@ def _doPyp(infileName):
inLines = fd.readlines()
if fd != sys.stdin:
fd.close()
for line in inLines:
bits = re_spaces.split(line)
if bits[0] == '##include':
@ -306,7 +306,7 @@ def _doPyp(infileName):
# done
return outStr
def include_processor(task):
infileName = task.inputs[0].srcpath()
outfileName = os.path.join(out, task.outputs[0].bldpath())
@ -561,7 +561,7 @@ def build(bld):
bld (
rule = include_processor,
source = 'ardour3_ui_light.rc.pre',
source = 'ardour3_ui_light.rc.pre',
target = 'ardour3_ui_light.rc'
)
@ -607,7 +607,7 @@ def build(bld):
bld.install_files('${SYSCONFDIR}/ardour3', 'ardour3_ui_default.conf')
# Generic widget style mappings
bld.install_files('${SYSCONFDIR}/ardour3', 'ardour3_widgets.rc')
# Default export stuff
bld.install_files('${SYSCONFDIR}/ardour3/export', 'export/*.format')

View File

@ -397,11 +397,11 @@ def build(bld):
obj.source += [ 'vst_plugin.cc', 'session_vst.cc' ]
obj.includes += [ '../fst' ]
obj.defines += [ 'VST_SUPPORT' ]
if bld.env['LXVST_SUPPORT']:
obj.source += [ 'lxvst_plugin.cc', 'session_lxvst.cc', 'vstfx.cc', 'vstfxwin.cc', 'vstfxinfofile.cc' ]
obj.defines += [ 'LXVST_SUPPORT' ]
obj.defines += [ 'LXVST_SUPPORT' ]
if bld.env['COREAUDIO']:
obj.source += [ 'coreaudiosource.cc', 'caimportable.cc' ]