do not include install targets for conditionally-built subdirs 2.0beta5.1
authorPaul Davis <paul@linuxaudiosystems.com>
Tue, 10 Oct 2006 02:36:18 +0000 (02:36 +0000)
committerPaul Davis <paul@linuxaudiosystems.com>
Tue, 10 Oct 2006 02:36:18 +0000 (02:36 +0000)
git-svn-id: svn://localhost/ardour2/trunk@969 d708f5d6-7413-0410-9779-e7cbd77b26cf

libs/appleutility/SConscript
vst/SConscript

index 695b2315cbbdb6e873003f6ef47a8bcd7e1e4ed3..c8bab03a87e1063f54e1df32f70317cdd648b1af 100644 (file)
@@ -17,7 +17,6 @@ appleutility.Append(LINKFLAGS='-framework CoreServices')
 libappleutility = appleutility.SharedLibrary('appleutility', appleutility_files)
 if appleutility['COREAUDIO']:
     Default(libappleutility)
-
-env.Alias('install', env.Install(os.path.join(install_prefix, 'lib/ardour2'), libappleutility))
+    env.Alias('install', env.Install(os.path.join(install_prefix, 'lib/ardour2'), libappleutility))
 
 env.Alias('tarball', env.Distribute (env['DISTTREE'], ['SConscript'] + appleutility_files + glob.glob('*.h') ))
index 6736fe2c0ea7bd7bedf96cc8534f98df28f13a2f..988a386de337315d02cb9ed8197ab10a762fd658 100644 (file)
@@ -71,10 +71,10 @@ if ardour_vst['VST']:
     ardour_vst.AddPostAction (wine_executable, ardour_vst.Action (Chmod (wine_executable, 0755)))
     Default([wine_generated_executable, wine_executable])
     
-# the wine script - into the bin dir
-env.Alias('install', env.Install(os.path.join(install_prefix, 'bin'), wine_executable))
-# the win32 executable - into the lib dir since the wine script will look for it there
-env.Alias('install', env.Install(os.path.join(install_prefix, 'lib/ardour2'), 'ardour_vst.exe.so'))
+    # the wine script - into the bin dir
+    env.Alias('install', env.Install(os.path.join(install_prefix, 'bin'), wine_executable))
+    # the win32 executable - into the lib dir since the wine script will look for it there
+    env.Alias('install', env.Install(os.path.join(install_prefix, 'lib/ardour2'), 'ardour_vst.exe.so'))
 
 env.Alias ('tarball', env.Distribute (env['DISTTREE'],
                                       [ 'SConscript',