From f8e2da56c10633d47b561d4ca99115837237dded Mon Sep 17 00:00:00 2001 From: Mike Stump Date: Wed, 24 May 2000 01:46:44 +0000 Subject: [PATCH] Makefile.in (xmalloc.o): Add dependency for config.h, fixes make -j3. * Makefile.in (xmalloc.o): Add dependency for config.h, fixes make -j3. From-SVN: r34117 --- libiberty/ChangeLog | 5 +++++ libiberty/Makefile.in | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog index c1d0598f817..e61cec3f333 100644 --- a/libiberty/ChangeLog +++ b/libiberty/ChangeLog @@ -1,3 +1,8 @@ +2000-05-23 Mike Stump + + * Makefile.in (xmalloc.o): Add dependency for config.h, fixes make + -j3. + 2000-05-18 J. David Anglin * xmalloc.c: Include config.h for HAVE_SBRK definition. diff --git a/libiberty/Makefile.in b/libiberty/Makefile.in index 96c6ff05620..9a476f31139 100644 --- a/libiberty/Makefile.in +++ b/libiberty/Makefile.in @@ -284,7 +284,7 @@ strerror.o: config.h $(INCDIR)/libiberty.h strsignal.o: config.h $(INCDIR)/libiberty.h xatexit.o: $(INCDIR)/libiberty.h xexit.o: $(INCDIR)/libiberty.h -xmalloc.o: $(INCDIR)/libiberty.h +xmalloc.o: config.h $(INCDIR)/libiberty.h xmemdup.o: config.h $(INCDIR)/libiberty.h xstrdup.o: config.h $(INCDIR)/libiberty.h xstrerror.o: config.h $(INCDIR)/libiberty.h