From f987091756dc2229636ba49e344d1e8ba534169c Mon Sep 17 00:00:00 2001 From: Doug McLain Date: Wed, 29 Nov 2006 03:39:54 +0000 Subject: [PATCH] Better error message for missing vst files git-svn-id: svn://localhost/ardour2/trunk@1170 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/fst/SConscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/fst/SConscript b/libs/fst/SConscript index f997948aff..1fd8d2758d 100644 --- a/libs/fst/SConscript +++ b/libs/fst/SConscript @@ -22,7 +22,7 @@ if fst['VST']: if os.access ('vstsdk2.3.zip', os.F_OK): fst.Execute ("unzip -o vstsdk2.3.zip") else: - print 'Did not find libs/fst/vst_sdk2_3.zip. Make sure the file is in the correct location and correctly named' + print 'Did not find vst_sdk2_3.zip or vstsdk2.3.zip in libs/fst. Make sure the correct file is in the correct location and correctly named' print 'Please see http://ardour.org/building_vst_support for more information' sys.exit (1) fst.Execute (Delete ("vst"))