From d1408526319f1ea24c02fdbbce374b2a514d4968 Mon Sep 17 00:00:00 2001 From: Karol Bonat Date: Fri, 9 Aug 2024 22:34:34 +0000 Subject: [PATCH] Fix spelling in command in warning message of ingen The command in ingen "vm.mmap_rnd_bits = 28" failed as the proper bash syntax for assigning varriables is without spaces. (cherry picked from commit 7c085660d8a3ba398139a9e6eeff1c0042c80338) --- src/sinol_make/commands/ingen/ingen_util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sinol_make/commands/ingen/ingen_util.py b/src/sinol_make/commands/ingen/ingen_util.py index 35fb28a1..2c6eecb5 100644 --- a/src/sinol_make/commands/ingen/ingen_util.py +++ b/src/sinol_make/commands/ingen/ingen_util.py @@ -100,7 +100,7 @@ def run_ingen(ingen_exe, working_dir=None): if util.has_sanitizer_error(whole_output, exit_code): print(util.warning('Warning: if ingen failed due to sanitizer errors, you can either run ' - '`sudo sysctl vm.mmap_rnd_bits = 28` to fix this or disable sanitizers with the ' + '`sudo sysctl vm.mmap_rnd_bits=28` to fix this or disable sanitizers with the ' '--no-fsanitize flag.')) return exit_code == 0