Kaydet (Commit) 63f5cf41 authored tarafından S.Çağlar Onur's avatar S.Çağlar Onur

fix #640

üst a11b9f14
......@@ -39,6 +39,6 @@ def make(parameters = ''):
if system('scons %s' % parameters):
raise MakeError(_('Make failed.'))
def install(parameters = 'install', prefix = get.installDIR()):
if system('scons prefix=%s %s' % (prefix, parameters)):
def install(parameters = 'install', prefix = get.installDIR(), argument='prefix'):
if system('scons %s=%s %s' % (argument, prefix, parameters)):
raise InstallError(_('Install failed.'))
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment