Skip to content

Commit

Permalink
use $(strip to remove whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
ReFil committed Jan 13, 2023
1 parent 0e19696 commit d011eea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
DOCKER := $(shell { command -v podman || command -v docker; })
TIMESTAMP := $(shell date -u +"%Y%m%d%H%M%S")
detected_OS := $(shell uname) # Classify UNIX OS
ifeq ($(detected_OS),Darwin) #We only care if it's OS X
ifeq ($(strip $(detected_OS)),Darwin) #We only care if it's OS X
SELINUX1 :=
SELINUX2 :=
else
Expand Down

0 comments on commit d011eea

Please sign in to comment.