diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-02-02 13:22:43 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-02-02 13:22:43 +0300 |
commit | f6cf097d11144f252aa008c791064a2a891d2963 (patch) | |
tree | 7ac1623e39194f5e2f71ea195e6727779f3e13bd | |
parent | Makefile: style & refactoring (diff) | |
download | cmake-common-f6cf097d11144f252aa008c791064a2a891d2963.tar.gz cmake-common-f6cf097d11144f252aa008c791064a2a891d2963.zip |
Makefile: better $(ls) on Linux
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -31,7 +31,7 @@ else ext := newline := @echo cwd := $(shell pwd) -ls := ls --almost-all -R +ls := function my_ls() { find "$$@" -type f | sort ; } ; my_ls endif # Python executable might be named differently, depending on the environment: |