bug 461183: SingleSourceFactory needs to run autoconf before packaging a tarball. r=nrthomas, patch=me

git-svn-id: svn://10.0.0.236/trunk@254798 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
bhearsum%mozilla.com
2008-10-29 12:19:47 +00:00
parent 0d711878dc
commit 4cfec5f303

View File

@@ -889,6 +889,11 @@ class SingleSourceFactory(ReleaseFactory):
description=['delete metadata'],
haltOnFailure=True
)
self.addStep(ShellCommand,
command=['autoconf-2.13'],
workdir=repoName,
haltOnFailure=True
)
self.addStep(ShellCommand,
command=['tar', '-cjf', sourceTarball, repoName],
workdir='.',