* t/subobj10.sh: The use of find(1) without an explicitly given
file or directory argument (as in "find -name '*.o'" instead of
"find . '-name.o'") is mostly a GNU extension, and not portable
to POSIX find. Fix it.
Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
.PHONY: test-objs
check-local: test-objs
test-objs:
- find -name '*.$(OBJEXT)' > o.lst && cat o.lst
+ find . -name '*.$(OBJEXT)' > o.lst && cat o.lst
test -f src/a.$(OBJEXT)
test -f b.$(OBJEXT)
test -f src/libbar_a-c.$(OBJEXT)