crystal-lang / shards

Dependency manager for the Crystal language
Other
765 stars 102 forks source link

Replace glob patterns in Makefile with `find` command #328

Closed waj closed 4 years ago

waj commented 4 years ago

Currently the Makefile makes use of the ** wildcard. But that actually doesn't have any effect. I replaced that with find calls, that I hope are fully portable 🤞

ysbaddaden commented 4 years ago

AFAIK the shell function is a GNU make extension and not portable.

And ** perfectly worked for me, so that's weird. Maybe it's related to the deeply nested lib/molinillo/src/molinillo directory structure.