summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2009-03-27 19:45:34 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2009-03-27 19:45:34 +0000
commit51ff80ade7f60f7978ad53d47e9dcd74ffcbfe4a (patch)
treee56765f81750a9eba1107cf6f3f750fa01caa752
parent24bb797853b884fbcdc0f51e420258a49236f49c (diff)
actual fix for vestige header file specification in SConscript2.8
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@4918 d708f5d6-7413-0410-9779-e7cbd77b26cf
-rw-r--r--libs/fst/SConscript13
1 files changed, 8 insertions, 5 deletions
diff --git a/libs/fst/SConscript b/libs/fst/SConscript
index 5332c096ed..a543d72a50 100644
--- a/libs/fst/SConscript
+++ b/libs/fst/SConscript
@@ -58,10 +58,13 @@ if fst['VST']:
e = fst.Object ('thread', 'thread.c')
Default([a,b,c,d,e])
+vestige_headers = glob.glob ('vestige/*.h')
+
env.Alias('tarball', env.Distribute (env['DISTTREE'],
- fst_src + ['SConscript',
- 'fst.h',
- 'jackvst.h',
- 'vestige/*.h'
- ] ))
+ fst_src + vestige_headers +
+ ['SConscript',
+ 'fst.h',
+ 'jackvst.h',
+ ]
+ ))