mirror of
https://github.com/yuzu-emu/unicorn
synced 2024-11-24 09:38:23 +00:00
samples: use -e rather than -a to check for file existence in Makefile
This commit is contained in:
parent
783b68c85b
commit
c55ad00e2a
1 changed files with 1 additions and 1 deletions
|
@ -75,7 +75,7 @@ endif
|
||||||
|
|
||||||
.PHONY: all clean
|
.PHONY: all clean
|
||||||
|
|
||||||
UNICORN_ARCHS := $(shell if [ -a ../config.log ]; then cat ../config.log;\
|
UNICORN_ARCHS := $(shell if [ -e ../config.log ]; then cat ../config.log;\
|
||||||
else printf "$(UNICORN_ARCHS)"; fi)
|
else printf "$(UNICORN_ARCHS)"; fi)
|
||||||
|
|
||||||
SOURCES =
|
SOURCES =
|
||||||
|
|
Loading…
Reference in a new issue