BSD ls does not have -I; use find
This commit is contained in:
parent
d1577873fc
commit
4ea11149c5
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -1,5 +1,5 @@
|
|||
excludes = -I Makefile -I README.md
|
||||
symlinks = $(shell ls $(excludes) `pwd`)
|
||||
symlinks = $(shell find . \( ! -iname "Makefile" ! -iname "README.md" ! -iname ".*" ! -path "./.git/*" ! -path "./zsh/*" \) | sed 's|./||')
|
||||
|
||||
.PHONY: $(symlinks)
|
||||
|
||||
|
|
Loading…
Reference in a new issue