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:
Gökçen Eraslan
2010-01-22 12:37:45 +00:00
parent 4539137d6a
commit 2eb8943986
2 changed files with 6 additions and 1 deletions
+5
View File
@@ -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>
* pisi/specfile.py (_set_i18n): Handle parsing errors during
translations.xml reading.
+1 -1
View File
@@ -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'):