summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authory0ast <joost@joo.st>2020-12-23 22:11:54 +0100
committerReto Brunner <reto@labrat.space>2020-12-24 10:56:16 +0100
commitda265a56e4a8c8631aef0de629bb82e250dba119 (patch)
tree5ae99546c6612cc7732997598c7decd334d83782 /Makefile
parent3edbe0c67ceae5f1464c07d3d7dd6673a3b98d3a (diff)
downloadaerc-da265a56e4a8c8631aef0de629bb82e250dba119.zip
Make makefile compatible with 3.81 (default MacOS)
Enables using the makefile with mac default make.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 77f5e61..9ad5e29 100644
--- a/Makefile
+++ b/Makefile
@@ -12,7 +12,7 @@ MANDIR?=$(PREFIX)/share/man
GO?=go
GOFLAGS?=
-GOSRC!=find . -name '*.go'
+GOSRC:=$(shell find . -name '*.go')
GOSRC+=go.mod go.sum
aerc: $(GOSRC)