Kaydet (Commit) c82bfdb0 authored tarafından Suleyman Poyraz's avatar Suleyman Poyraz

Makefile.PL not fond error.

Recursive Build.PL expression is changed as Makefile.PL to compile some perl sources which have named its build script as Makefile.PL
üst 0092ef0f
......@@ -59,7 +59,7 @@ def configure(parameters=''):
if can_access_file('Build.PL'):
if system('perl{0} Build.PL installdirs=vendor destdir={1}'.format(get.curPERL(), get.installDIR())):
raise ConfigureError(_('Configure failed.'))
elif can_access_file('Build.PL'):
elif can_access_file('Makefile.PL'):
if system('perl{0} Makefile.PL {1} PREFIX=/usr INSTALLDIRS=vendor DESTDIR={2}'.format(get.curPERL(), parameters,
get.installDIR())):
raise ConfigureError(_('Configure 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