aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorrage 311 <rage_311@hotmail.com>2019-06-03 18:09:51 -0400
committerDrew DeVault <sir@cmpwn.com>2019-06-03 18:11:00 -0400
commitcbbdb232e87ebf92b6abba9bb3f7eff0597d0fff (patch)
treefcfa9c3dbfbc5f4fd8e75935536cc285d1e3e7ba /Makefile
parent207ecc39cd9b1e85f482be23240fc5a90d775fd7 (diff)
Fix Makefile for non-GNU find
derp
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 4058ae7..2b5dfbc 100644
--- a/Makefile
+++ b/Makefile
@@ -9,7 +9,7 @@ SHAREDIR?=$(_INSTDIR)/share/aerc
MANDIR?=$(_INSTDIR)/share/man
GOFLAGS?=
-GOSRC!=find -name '*.go'
+GOSRC!=find . -name '*.go'
GOSRC+=go.mod go.sum
aerc: $(GOSRC)