Skip to content

Commit

Permalink
build: fix find usage on macOS
Browse files Browse the repository at this point in the history
The BSD find requires the path even for current directory. No harm in
providing it on GNU find too.
  • Loading branch information
jnikula committed Aug 31, 2024
1 parent dc8d572 commit 3a377b4
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
Expand Up @@ -2,4 +2,4 @@
.PHONY: default
default: help

include $(shell find -name Makefile.local)
include $(shell find . -name Makefile.local)

0 comments on commit 3a377b4

Please sign in to comment.