diff options
author | rage 311 <rage_311@hotmail.com> | 2019-06-03 18:09:51 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2019-06-03 18:11:00 -0400 |
commit | cbbdb232e87ebf92b6abba9bb3f7eff0597d0fff (patch) | |
tree | fcfa9c3dbfbc5f4fd8e75935536cc285d1e3e7ba /Makefile | |
parent | 207ecc39cd9b1e85f482be23240fc5a90d775fd7 (diff) | |
download | aerc-cbbdb232e87ebf92b6abba9bb3f7eff0597d0fff.tar.gz |
Fix Makefile for non-GNU find
derp
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
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) |