summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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',
+ ]
+ ))