From: Øyvind H. <go...@us...> - 2009-11-22 13:37:13
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Main OpenOCD repository". The branch, master has been updated via d1fbcc35899f6071d097b8dfb76ab3125c3c4fac (commit) from dd9894f481d127266c201d7075ecbdd34b034124 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit d1fbcc35899f6071d097b8dfb76ab3125c3c4fac Author: Ãyvind Harboe <oyv...@zy...> Date: Sun Nov 22 13:24:45 2009 +0100 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 <oyv...@zy...> diff --git a/src/Makefile.am b/src/Makefile.am index 8f96b05..913118f 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -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) ----------------------------------------------------------------------- Summary of changes: src/Makefile.am | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) hooks/post-receive -- Main OpenOCD repository |