From 65c7d78620130d676073152c3de319254f76d0eb Mon Sep 17 00:00:00 2001 From: Gabriel Wicki Date: Wed, 22 Dec 2021 16:24:13 +0100 Subject: [PATCH] fix mescc alias in mes.kaem script delete --no-auto-compile : useless in this case (MES doesn't compile) delete -- : this starts an interactive scheme session (which is not the case here) --- lib/sysgeneral.py | 3 ++- sysa/mes/mes.kaem | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/sysgeneral.py b/lib/sysgeneral.py index f9fc95a..58ea5b5 100644 --- a/lib/sysgeneral.py +++ b/lib/sysgeneral.py @@ -62,7 +62,8 @@ class SysGeneral: raise Exception(f"Checksum mismatch for file {os.path.basename(file_name)}:\n\ expected: {expected_hash}\n\ actual: {readable_hash}\n\ -When in doubt, try deleting the file in question -- it will be downloaded again when running this script the next time") +When in doubt, try deleting the file in question -- it will be downloaded again when running \ +this script the next time") raise Exception("File checksum is not yet recorded") diff --git a/sysa/mes/mes.kaem b/sysa/mes/mes.kaem index 55eb17c..ac7e523 100755 --- a/sysa/mes/mes.kaem +++ b/sysa/mes/mes.kaem @@ -40,7 +40,7 @@ chmod 755 ${bindir}/mes-m2 # Build Mes C library using mes-m2 bootstrapped Mes -alias mescc="${MES} --no-auto-compile -e main ${bindir}/mescc.scm -- -D HAVE_CONFIG_H=1 -I include -I include/linux/x86 -c" +alias mescc="${MES} -e main ${bindir}/mescc.scm -D HAVE_CONFIG_H=1 -I include -I include/linux/x86 -c" # Start with crt1.o mescc lib/linux/x86-mes-mescc/crt1.c