From: Jo-Philipp Wich Date: Mon, 23 Jan 2017 14:15:09 +0000 (+0100) Subject: phase1: fix GNU tar build target X-Git-Tag: v1~188 X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=4c2b3361059690804a8e7b4f9f6d2209604c9ac7;p=buildbot.git phase1: fix GNU tar build target Recent buildroots do not have a dedicated tools/*/install target anymore. Signed-off-by: Jo-Philipp Wich --- diff --git a/phase1/master.cfg b/phase1/master.cfg index fa671aa..542c3c5 100644 --- a/phase1/master.cfg +++ b/phase1/master.cfg @@ -539,7 +539,7 @@ for target in targets: factory.addStep(ShellCommand( name = "dltar", description = "Building GNU tar", - command = ["make", WithProperties("-j%(jobs)d", jobs=GetNumJobs), "tools/tar/install", "V=s"], + command = ["make", WithProperties("-j%(jobs)d", jobs=GetNumJobs), "tools/tar/compile", "V=s"], env = MakeEnv(), haltOnFailure = True ))