From 41d510e70d0cb656ad9b6cf8b5dc01491ed1be81 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Deuc=D0=B5?= <shurd@sasktel.net> Date: Wed, 31 Mar 2021 19:52:51 -0400 Subject: [PATCH] os is lower-case. Fixes *nix builds of Win32 programs. --- src/build/Common.gmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/build/Common.gmake b/src/build/Common.gmake index f370cb1404..0ab0f6fa92 100644 --- a/src/build/Common.gmake +++ b/src/build/Common.gmake @@ -214,7 +214,7 @@ ifndef os endif os := $(shell echo $(os) | tr '[A-Z]' '[a-z]' | tr ' ' '_') -ifneq ($(os),Win32) +ifneq ($(os),win32) CFLAGS += -DPREFER_POLL endif -- GitLab