forked from OSchip/llvm-project
Revert to using shell to find files instead of 'find', that wasn't portable.
- I think I did this commit sequence before. :) llvm-svn: 75420
This commit is contained in:
parent
ed0e1a0552
commit
d37908f149
|
@ -1,9 +1,8 @@
|
|||
LEVEL = ../../..
|
||||
include $(LEVEL)/Makefile.common
|
||||
|
||||
# Test in all immediate subdirectories if unset (except for the .svn and Output
|
||||
# directories).
|
||||
TESTDIRS ?= $(shell find $(PROJ_SRC_DIR) -depth 1 -type d -not -name .svn -prune -and -not -name Output -prune)
|
||||
# Test in all immediate subdirectories if unset.
|
||||
TESTDIRS ?= $(shell echo $(PROJ_SRC_DIR)/*/)
|
||||
|
||||
ifndef TESTARGS
|
||||
ifdef VERBOSE
|
||||
|
|
Loading…
Reference in New Issue