Do not ignore parameter in make method (eg. perl Build test). Tests of some perl modules have never run before this commit.
This commit is contained in:
@@ -1,3 +1,8 @@
|
|||||||
|
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>
|
2010-01-19 Ozan Çağlayan <ozan@pardus.org.tr>
|
||||||
* pisi/specfile.py (_set_i18n): Handle parsing errors during
|
* pisi/specfile.py (_set_i18n): Handle parsing errors during
|
||||||
translations.xml reading.
|
translations.xml reading.
|
||||||
|
|||||||
@@ -62,7 +62,7 @@ def make(parameters = ''):
|
|||||||
if system('make %s' % parameters):
|
if system('make %s' % parameters):
|
||||||
raise MakeError, _('Make failed.')
|
raise MakeError, _('Make failed.')
|
||||||
else:
|
else:
|
||||||
if system('perl Build build'):
|
if system('perl Build %s' % parameters):
|
||||||
raise MakeError, _('perl build failed.')
|
raise MakeError, _('perl build failed.')
|
||||||
|
|
||||||
def install(parameters = 'install'):
|
def install(parameters = 'install'):
|
||||||
|
|||||||
Reference in New Issue
Block a user