summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Wood <michael.g.wood@intel.com>2016-10-05 17:08:51 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-10-06 11:41:39 +0100
commitc57f20f9cd7cb4ea4d285291a1e71e5df7152799 (patch)
treea5b135aaf428f1d7f13e5a339d7a9fc49045d617
parent11b3b6a7087554d14a2812a9ae463dce740b879e (diff)
downloadbitbake-contrib-c57f20f9cd7cb4ea4d285291a1e71e5df7152799.tar.gz
toaster: checksettings Remove confusing startup messages
These "validation" messages are shown regardless as to whether the settings are being correctly set or not. For the time being remove them. [YOCTO #9097] Signed-off-by: Michael Wood <michael.g.wood@intel.com> Signed-off-by: bavery <brian.avery@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--lib/toaster/bldcontrol/management/commands/checksettings.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/toaster/bldcontrol/management/commands/checksettings.py b/lib/toaster/bldcontrol/management/commands/checksettings.py
index 28b9945e8..2ed994f61 100644
--- a/lib/toaster/bldcontrol/management/commands/checksettings.py
+++ b/lib/toaster/bldcontrol/management/commands/checksettings.py
@@ -42,7 +42,6 @@ class Command(NoArgsCommand):
return True
if len(be.sourcedir) == 0:
- print("\n -- Validation: The layers checkout directory must be set.")
is_changed = _update_sourcedir()
if not be.sourcedir.startswith("/"):
@@ -59,7 +58,6 @@ class Command(NoArgsCommand):
return True
if len(be.builddir) == 0:
- print("\n -- Validation: The build directory must be set.")
is_changed = _update_builddir()
if not be.builddir.startswith("/"):