Bug fixes (#236)

* '#' is not a valid comment

* bug fix

* less noisy fix
This commit is contained in:
Tom Everett
2023-09-08 17:30:58 -04:00
committed by GitHub
parent 01c6bc87f6
commit 555eb30fc7
2 changed files with 11 additions and 12 deletions
+4 -4
View File
@@ -1,16 +1,16 @@
# detect OS
UNAME=$(shell uname)
ifeq ($(UNAME), Linux)
ifeq ($(UNAME), "Linux")
UNAME=LINUX
else
ifeq ($(UNAME), Darwin)
ifeq ($(UNAME), "Darwin")
UNAME=DARWIN
else
ifeq ($(UNAME), FreeBSD)
ifeq ($(UNAME), "FreeBSD")
UNAME=FREEBSD
else
ifeq ($(UNAME), OpenBSD)
ifeq ($(UNAME), "OpenBSD")
UNAME=OPENBSD
endif
endif