summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDavid Whetstone <humblehacker@users.noreply.github.com>2024-04-02 13:31:29 -0700
committerGitHub <noreply@github.com>2024-04-02 21:31:29 +0100
commit742d19ef634c84531b98a8d13c081610c38754ba (patch)
treee960239118b685e96c427531ab79d7ab728af91e /Makefile
parentdd3da03b9d8de287570d23245ff3a0c321bb0e31 (diff)
Fix Makefile errors that prevent builds on macOS (#409)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 4 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 71691e2..0598579 100644
--- a/Makefile
+++ b/Makefile
@@ -1,8 +1,7 @@
-DOCKER := "$(shell { command -v podman || command -v docker; })"
-TIMESTAMP := "$(shell date -u +"%Y%m%d%H%M")"
-COMMIT := "$(shell git rev-parse --short HEAD 2>/dev/null)"
-detected_OS := "$(shell uname)" # Classify UNIX OS
-ifeq ($(strip $(detected_OS)),Darwin) #We only care if it's OS X
+DOCKER := $(shell { command -v podman || command -v docker; })
+TIMESTAMP := $(shell date -u +"%Y%m%d%H%M")
+COMMIT := $(shell git rev-parse --short HEAD 2>/dev/null)
+ifeq ($(shell uname),Darwin)
SELINUX1 :=
SELINUX2 :=
else