From 8c758e122421c798b4549370cc40454837861144 Mon Sep 17 00:00:00 2001 From: Intel A80486DX2-66 Date: Sat, 30 Dec 2023 14:57:32 +0300 Subject: [PATCH] bytebeat_compiler.py: fix name: `CC_FLAGS` -> `CFLAGS` --- bytebeat_compiler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bytebeat_compiler.py b/bytebeat_compiler.py index 1ad0a01..9f38182 100644 --- a/bytebeat_compiler.py +++ b/bytebeat_compiler.py @@ -55,7 +55,7 @@ def substitute_vars(replacements: dict, text: str) -> str: return text CC = fetch("CC") -CFLAGS = fetch("CC_FLAGS") +CFLAGS = fetch("CFLAGS") INPUT_FILE = fetch("INPUT_FILE") OUTPUT_FILE = fetch("OUTPUT_FILE")