Kaydet (Commit) 2eb89439 authored tarafından Gökçen Eraslan's avatar Gökçen Eraslan

Do not ignore parameter in make method (eg. perl Build test). Tests of some perl…

Do not ignore parameter in make method (eg. perl Build test). Tests of some perl modules have never run before this commit.
üst 4539137d
2010-01-22 Gökçen Eraslan <gokcen@pardus.org.tr>
* pisi/actionsapi/perlmodules.py: Do not ignore parameter in make
method (eg. perl Build test). Tests of some perl modules have never run
before this commit.
2010-01-19 Ozan Çağlayan <ozan@pardus.org.tr>
* pisi/specfile.py (_set_i18n): Handle parsing errors during
translations.xml reading.
......
......@@ -62,7 +62,7 @@ def make(parameters = ''):
if system('make %s' % parameters):
raise MakeError, _('Make failed.')
else:
if system('perl Build build'):
if system('perl Build %s' % parameters):
raise MakeError, _('perl build failed.')
def install(parameters = 'install'):
......
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