1# TODO(ninja): This test is only for ckati. ninja: fix $(sort $(shell $(1)))
2# go: implement generic builtin find
3# ninja: $(sort $(shell "find .")) becomes "$( .) find"
4
5define run_find
6@echo $$ '$(strip $(1))'
7@echo $(sort $(shell $(1)))
8endef
9
10test1:
11	$(call run_find, find .)
12