Skip to content
Snippets Groups Projects
Commit a4ff4719 authored by Horst Kronstorfer's avatar Horst Kronstorfer Committed by Wolfgang Denk
Browse files

dts/Makefile: Check for empty $(LDSCRIPT)


Make sure that $(LDSCRIPT) is not empty before calling process_lds
with 'cat $(LDSCRIPT)' else cat will block waiting for input from
stdin.

Signed-off-by: default avatarHorst Kronstorfer <hkronsto@frequentis.com>
parent 8b5a0264
No related branches found
No related tags found
No related merge requests found
......@@ -67,8 +67,9 @@ $(obj)dt.o: $(DT_BIN)
# We look in the LDSCRIPT first.
# Then try the linker which should give us the answer.
# Then check it worked.
oformat=`$(call process_lds,cat $(LDSCRIPT),FORMAT)` ;\
oarch=`$(call process_lds,cat $(LDSCRIPT),ARCH)` ;\
[ -n "$(LDSCRIPT)" ] && \
oformat=`$(call process_lds,cat $(LDSCRIPT),FORMAT)` && \
oarch=`$(call process_lds,cat $(LDSCRIPT),ARCH)` ;\
\
[ -z $${oformat} ] && \
oformat=`$(call process_lds,$(GET_LDS),FORMAT)` ;\
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment