Commit 054bfa1 introduced an issue when building on Linux. The Makefile would expect the find command to be at /bin/find, which isn't always the case on Linux. I've changed find to be a variable that defaults to find unless on Windows, in which case it will use /bin/find.
Commit 054bfa1 introduced an issue when building on Linux. The Makefile would expect the
find
command to be at/bin/find
, which isn't always the case on Linux. I've changedfind
to be a variable that defaults tofind
unless on Windows, in which case it will use/bin/find
.