From 9b5c92b150d319f35cdc93cd556101f1de6b2b32 Mon Sep 17 00:00:00 2001 From: Evan Hunter Date: Thu, 6 Oct 2016 09:20:25 +0100 Subject: [PATCH] Fix makefile dependencies Not all objects were dependent on the Makefile/headers, so the following build sequence resulted in failure: ./configure CFLAGS="--coverage" LDFLAGS="--coverage" && make ./configure && make --- Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.in b/Makefile.in index cf0d835..563c0a7 100644 --- a/Makefile.in +++ b/Makefile.in @@ -115,7 +115,7 @@ uninstall: test check: $(JIMSH) cd @srcdir@/tests; $(DEF_LD_PATH) $(MAKE) jimsh=@builddir@/jimsh TOPSRCDIR=.. -$(OBJS): Makefile $(wildcard *.h) +$(OBJS) jimsh.o initjimsh.o: Makefile $(wildcard *.h) @if JIM_UTF8 # Generate the unicode case mapping -- 2.11.4.GIT