From 630915ccb1700f1f880d25cb04da23bf68fc4293 Mon Sep 17 00:00:00 2001 From: Roman Perepelitsa Date: Thu, 26 Nov 2020 11:15:42 +0100 Subject: [PATCH] don't allow overriding the path to zsh --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a6e02a0..0141dd9 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ APPNAME ?= gitstatusd OBJDIR ?= obj CXX ?= g++ -ZSH ?= $(shell command -v zsh 2> /dev/null) +ZSH := $(shell command -v zsh 2> /dev/null) VERSION ?= $(shell . ./build.info && printf "%s" "$$gitstatus_version")