mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-07 22:25:46 +01:00
use newer python string methods
git-svn-id: svn://localhost/ardour2/trunk@632 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
d9339f2f40
commit
5df781bb0d
1 changed files with 1 additions and 1 deletions
|
|
@ -353,7 +353,7 @@ env.Append (BUILDERS = {'Tarball' : tarball_bld})
|
|||
if env['VST']:
|
||||
sys.stdout.write ("Are you building Ardour for personal use (rather than distributiont to others)? [no]: ")
|
||||
answer = sys.stdin.readline ()
|
||||
answer = string.strip (string.rstrip (answer));
|
||||
answer = answer.rstrip().strip()
|
||||
if answer != "yes" and answer != "y":
|
||||
print 'You cannot build Ardour with VST support for distribution to others.\nIt is a violation of several different licenses. VST support disabled.'
|
||||
env['VST'] = 0;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue