From b544f9c2db8874109010279d43ea774fa8e2748b Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Fri, 11 May 2012 13:01:59 +0000 Subject: [PATCH] disable installing a3 for now, so that people don't scratch their heads when it doesn't work git-svn-id: svn://localhost/ardour2/branches/3.0@12251 d708f5d6-7413-0410-9779-e7cbd77b26cf --- wscript | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/wscript b/wscript index d0e507cd86..acf6db31b9 100644 --- a/wscript +++ b/wscript @@ -728,3 +728,12 @@ def i18n_po(bld): def i18n_mo(bld): bld.recurse (i18n_children) + +def install_not_supported(bld): + print 'Installing Ardour 3 is currently unsupported. Run it via the command ./ardev from within the gtk2_ardour directory.' + sys.exit (1) + +from waflib import Build +class install(Build.InstallContext): + cmd = 'install' + fun = 'install_not_supported'