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: Horst Kronstorfer <hkronsto@frequentis.com>
This commit is contained in:
parent
8b5a02640a
commit
a4ff471970
@ -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)` ;\
|
||||
|
Loading…
Reference in New Issue
Block a user