summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2021-10-30 16:08:27 -0400
committerMatt A. Tobin <email@mattatobin.com>2021-10-30 16:08:27 -0400
commitabc16648c3bcccd785ab5708f02f39947d7dd3fa (patch)
treea803085f10efa2419a97e5499807f33b882a531e
parent13a6284ef188b56475aa5a56083d5d419d3524e0 (diff)
downloadaura-central-abc16648c3bcccd785ab5708f02f39947d7dd3fa.tar.gz
No Issue - Make building the backend fun again!
-rw-r--r--python/mozbuild/mozbuild/config_status.py20
1 files changed, 19 insertions, 1 deletions
diff --git a/python/mozbuild/mozbuild/config_status.py b/python/mozbuild/mozbuild/config_status.py
index 79b0a514a..ee122c807 100644
--- a/python/mozbuild/mozbuild/config_status.py
+++ b/python/mozbuild/mozbuild/config_status.py
@@ -13,6 +13,7 @@ import os
import subprocess
import sys
import time
+import random
from argparse import ArgumentParser
@@ -112,8 +113,25 @@ def config_status(topobjdir='.', topsrcdir='.', defines=None,
log_manager.add_terminal_logging(level=log_level)
log_manager.enable_unstructured()
- print('Feeding the hatchlings...', file=sys.stderr)
+ STATUS_MESSAGES = [
+ 'Reticulating splines',
+ 'Walking the dog',
+ 'Feeding the hatchlings',
+ 'Pressing play on tape',
+ 'Spinning the wheel',
+ 'Adjusting flux capacitor',
+ 'Granting wishes',
+ 'Auditing the taxes',
+ 'Twiddling thumbs',
+ 'Consulting the manual',
+ 'Brewing coffee',
+ 'Inserting coin',
+ 'What? Hold on',
+ ]
+
+ print('{0}...'.format(random.choice(STATUS_MESSAGES)), file=sys.stderr)
sys.stderr.flush()
+
if len(selected_backends) > 1:
definitions = list(definitions)