actual fix for vestige header file specification in SConscript

git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@4918 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2009-03-27 19:45:34 +00:00
parent 24bb797853
commit 51ff80ade7
1 changed files with 9 additions and 6 deletions

View File

@ -58,10 +58,13 @@ if fst['VST']:
e = fst.Object ('thread', 'thread.c')
Default([a,b,c,d,e])
env.Alias('tarball', env.Distribute (env['DISTTREE'],
fst_src + ['SConscript',
'fst.h',
'jackvst.h',
'vestige/*.h'
] ))
vestige_headers = glob.glob ('vestige/*.h')
env.Alias('tarball', env.Distribute (env['DISTTREE'],
fst_src + vestige_headers +
['SConscript',
'fst.h',
'jackvst.h',
]
))