summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBelen Barros Pena <belen.barros.pena@intel.com>2015-08-12 11:33:42 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-08-17 08:48:27 +0100
commit8ab2101166090d1478456db9cab7014f74b0ab03 (patch)
tree176512140e9a9ee041a3e6e1512d7a10a76641f5
parent783a76d0b77b183a896e21569aecca10c33b32a7 (diff)
downloadpoky-8ab2101166090d1478456db9cab7014f74b0ab03.tar.gz
bitbake: toaster: Fix typo in set up script output
Removing an spurious 'it' when setting the build directory. Thanks to Scott Rifenbark for finding the typo! (Bitbake rev: dd644a2c87e651c3990520759bab55a56ba110d1) Signed-off-by: Belen Barros Pena <belen.barros.pena@intel.com> Signed-off-by: Michael Wood <michael.g.wood@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--bitbake/lib/toaster/bldcontrol/management/commands/checksettings.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/bldcontrol/management/commands/checksettings.py b/bitbake/lib/toaster/bldcontrol/management/commands/checksettings.py
index 3002e4c2a9..9a508b43f4 100644
--- a/bitbake/lib/toaster/bldcontrol/management/commands/checksettings.py
+++ b/bitbake/lib/toaster/bldcontrol/management/commands/checksettings.py
@@ -133,7 +133,7 @@ class Command(NoArgsCommand):
133 def _update_builddir(): 133 def _update_builddir():
134 suggesteddir = self._get_suggested_builddir(be) 134 suggesteddir = self._get_suggested_builddir(be)
135 if len(suggesteddir) > 0: 135 if len(suggesteddir) > 0:
136 be.builddir = raw_input("Toaster needs to know where it your build directory is located.\n The build directory is where all the artifacts created by your builds will be stored. Toaster suggests \"%s\".\n Press Enter to select \"%s\" or type the full path to a different directory: " % (suggesteddir, suggesteddir)) 136 be.builddir = raw_input("Toaster needs to know where your build directory is located.\n The build directory is where all the artifacts created by your builds will be stored. Toaster suggests \"%s\".\n Press Enter to select \"%s\" or type the full path to a different directory: " % (suggesteddir, suggesteddir))
137 else: 137 else:
138 be.builddir = raw_input("Toaster needs to know where is your build directory.\n The build directory is where all the artifacts created by your builds will be stored. Type the full path to the directory (for example: \" %s/build\")" % os.environ.get('HOME','/tmp/')) 138 be.builddir = raw_input("Toaster needs to know where is your build directory.\n The build directory is where all the artifacts created by your builds will be stored. Type the full path to the directory (for example: \" %s/build\")" % os.environ.get('HOME','/tmp/'))
139 if len(be.builddir) == 0 and len(suggesteddir) > 0: 139 if len(be.builddir) == 0 and len(suggesteddir) > 0: