trivial: -name first is faster due to no need for stat

This commit is contained in:
Scott Moser
2012-11-07 10:35:39 -05:00
parent 4d1d7a9bb5
commit d72886f4e0

View File

@@ -1,5 +1,5 @@
CWD=$(shell pwd)
PY_FILES=$(shell find cloudinit bin tests tools -type f -name "*.py")
PY_FILES=$(shell find cloudinit bin tests tools -name "*.py" -type f )
PY_FILES+="bin/cloud-init"
all: test