summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2019-02-08 13:37:06 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-02-25 22:27:39 +0000
commit8c32ee01a3970c39a901f54a2c7d0f10e41e0f83 (patch)
treec5ad70bd7f088b076b990ddb5996efc309b811d4 /scripts
parente9d1be84be7bd1b25f756b3a29dca33c0fdd2ecc (diff)
downloadpoky-8c32ee01a3970c39a901f54a2c7d0f10e41e0f83.tar.gz
oe-build-perf-report: Allow branch without hostname
Allow the branch to be set without the hostname option. Previously if hostname wasn't set, branch would be overwritten regardless of whether it was set or not. (From OE-Core rev: 3ec43bf4c6c8f7730a67f63ad4e14903f289014e) (From OE-Core rev: b162c70dd6e926e1700553e27b41eb1c12ee2dce) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/oe-build-perf-report4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/oe-build-perf-report b/scripts/oe-build-perf-report
index 0bd05f44ef..c91f74192b 100755
--- a/scripts/oe-build-perf-report
+++ b/scripts/oe-build-perf-report
@@ -512,10 +512,10 @@ def auto_args(repo, args):
512 512
513 key = split[0] 513 key = split[0]
514 val = split[1].strip() 514 val = split[1].strip()
515 if key == 'hostname': 515 if key == 'hostname' and not args.hostname:
516 log.debug("Using hostname %s", val) 516 log.debug("Using hostname %s", val)
517 args.hostname = val 517 args.hostname = val
518 elif key == 'branch': 518 elif key == 'branch' and not args.branch:
519 log.debug("Using branch %s", val) 519 log.debug("Using branch %s", val)
520 args.branch = val 520 args.branch = val
521 521