github.com/westcoastroms/westcoastroms-build@v0.0.0-20190928114312-2350e5a73030/build/kati/testcase/find_command_sorted.mk (about)

     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  
     5  define run_find
     6  @echo $$ '$(strip $(1))'
     7  @echo $(sort $(shell $(1)))
     8  endef
     9  
    10  test1:
    11  	$(call run_find, find .)