Skip to content
This repository has been archived by the owner on Jun 11, 2019. It is now read-only.

Commit

Permalink
Bug 525470 - Pass extraArgs to the 'make deb' command - r=aki
Browse files Browse the repository at this point in the history
  • Loading branch information
ccooper committed Oct 30, 2009
1 parent 2ae8f9c commit 12c4c46
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions process/factory.py
Original file line number Diff line number Diff line change
Expand Up @@ -4035,7 +4035,7 @@ def addPackageSteps(self, multiLocale=False):
command=[self.scratchboxPath, '-p', '-d',
'build/%s/%s/%s/mobile' % \
(self.baseBuildDir, self.branchName, self.objdir),
'make deb'],
'make deb', extraArgs],
description=['make', 'mobile', 'deb'],
haltOnFailure=True
)
Expand All @@ -4045,7 +4045,7 @@ def addPackageSteps(self, multiLocale=False):
command=[self.scratchboxPath, '-p', '-d',
'build/%s/%s/%s/xulrunner' % \
(self.baseBuildDir, self.branchName, self.objdir),
'make package-tests PYTHON=python2.5'],
'make package-tests PYTHON=python2.5', extraArgs],
description=['make', 'package-tests'],
haltOnFailure=True
)
Expand All @@ -4054,7 +4054,7 @@ def addPackageSteps(self, multiLocale=False):
command=[self.scratchboxPath, '-p', '-d',
'build/%s/%s/%s/xulrunner' % \
(self.baseBuildDir, self.branchName, self.objdir),
'make deb'],
'make deb', extraArgs],
description=['make', 'xulrunner', 'deb'],
haltOnFailure=True
)
Expand Down

0 comments on commit 12c4c46

Please sign in to comment.