build: fix breakage in building bin2char
bin2char build relied on $(builddir) which is not defined for arm-elf X builds at least. Signed-off-by: Øyvind Harboe <oyvind.harboe@zylin.com>
This commit is contained in:
parent
dd9894f481
commit
d1fbcc3589
|
@ -112,7 +112,7 @@ BUILT_SOURCES = startup.tcl
|
|||
startup.tcl: $(STARTUP_TCL_SRCS)
|
||||
cat $^ > $@
|
||||
|
||||
BIN2C = $(builddir)/helper/bin2char$(EXEEXT_FOR_BUILD)
|
||||
BIN2C = $(top_builddir)/src/helper/bin2char$(EXEEXT_FOR_BUILD)
|
||||
|
||||
# Convert .tcl to cfile
|
||||
startup_tcl.c: startup.tcl $(BIN2C)
|
||||
|
|
Loading…
Reference in New Issue