summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/templates/projectconf.html
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/toaster/toastergui/templates/projectconf.html')
-rw-r--r--bitbake/lib/toaster/toastergui/templates/projectconf.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/projectconf.html b/bitbake/lib/toaster/toastergui/templates/projectconf.html
index c3ed216194..fcf6df2bf8 100644
--- a/bitbake/lib/toaster/toastergui/templates/projectconf.html
+++ b/bitbake/lib/toaster/toastergui/templates/projectconf.html
@@ -251,16 +251,16 @@ function validate_new_variable() {
251 } 251 }
252 } 252 }
253 253
254 var bad_chars = /[^a-zA-Z0-9\-_]/.test(variable); 254 var bad_chars = /[^a-zA-Z0-9\-_/]/.test(variable);
255 var has_spaces = (0 <= variable.indexOf(" ")); 255 var has_spaces = (0 <= variable.indexOf(" "));
256 var only_spaces = (0 < variable.length) && (0 == variable.trim().length); 256 var only_spaces = (0 < variable.length) && (0 == variable.trim().length);
257 257
258 if (only_spaces) { 258 if (only_spaces) {
259 error_msg = "A valid variable name cannot include spaces"; 259 error_msg = "A valid variable name cannot include spaces";
260 } else if (bad_chars && has_spaces) { 260 } else if (bad_chars && has_spaces) {
261 error_msg = "A valid variable name can only include letters, numbers, underscores, dashes, and cannot include spaces"; 261 error_msg = "A valid variable name can only include letters, numbers and the special characters <code> _ - /</code>. Variable names cannot include spaces";
262 } else if (bad_chars) { 262 } else if (bad_chars) {
263 error_msg = "A valid variable name can only include letters, numbers, underscores, and dashes"; 263 error_msg = "A valid variable name can only include letters, numbers and the special characters <code>_ - /</code>";
264 } 264 }
265 265
266 if ("" != error_msg) { 266 if ("" != error_msg) {