From 9a811901ef460038dea2f5c8ed7bf2f15cee479f Mon Sep 17 00:00:00 2001 From: "Matt A. Tobin" Date: Sat, 30 Oct 2021 16:08:27 -0400 Subject: No Issue - Make building the backend fun again! --- python/mozbuild/mozbuild/config_status.py | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/python/mozbuild/mozbuild/config_status.py b/python/mozbuild/mozbuild/config_status.py index e279dbf483..0b4e6e41dd 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 @@ -125,8 +126,24 @@ 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 = [ + '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', + 'Deriving optimal formula', + ] + + print('{0}...'.format(random.choice(STATUS_MESSAGES)), file=sys.stderr) sys.stderr.flush() + if len(selected_backends) > 1: definitions = list(definitions) -- cgit v1.2.3