From 6e39dea6de0a367ea44883ed76b4a1f93e588f2b Mon Sep 17 00:00:00 2001 From: "alexey.lysiuk" Date: Mon, 30 Nov 2020 10:10:18 +0200 Subject: [PATCH] build script: fix typo in comment --- build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.py b/build.py index 48b5b864..789e3cc3 100755 --- a/build.py +++ b/build.py @@ -587,7 +587,7 @@ class QuakespasmTarget(MakeTarget): def configure(self, builder: 'Builder'): super().configure(builder) - # Copy linker flags from enviroment to command line argument, they would be overridden by Makefile otherwise + # Copy linker flags from environment to command line argument, they would be overridden by Makefile otherwise ldflags = 'LDFLAGS' self.options[ldflags] = self.environment[ldflags]