do not conditionally add directories to "subdirs" because then they are not included in the src tarball if various scons flags are not set

git-svn-id: svn://localhost/ardour2/trunk@960 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2006-10-09 17:56:13 +00:00
parent 0d0f71ee92
commit 048526fde8
4 changed files with 34 additions and 25 deletions

View file

@ -21,7 +21,8 @@ b = fst.Object ('fstinfofile', 'fstinfofile.c')
c = fst.Object ('vstwin', 'vstwin.c')
d = fst.Object ('vsti', 'vsti.c')
Default([hackSDK,a,b,c,d])
if fst['VST']:
Default([hackSDK,a,b,c,d])
env.Alias('tarball', env.Distribute (env['DISTTREE'], fst_src + ['SConscript'] ))