diff options
author | Mike Stump <mrs@wrs.com> | 2000-05-24 01:46:44 +0000 |
---|---|---|
committer | Mike Stump <mrs@gcc.gnu.org> | 2000-05-24 01:46:44 +0000 |
commit | f8e2da56c10633d47b561d4ca99115837237dded (patch) | |
tree | 8271104465563275d9c38b53c876ea0af577a2be | |
parent | a84b5d643606397f05a638c1341117afe52daecf (diff) | |
download | gcc-f8e2da56c10633d47b561d4ca99115837237dded.zip gcc-f8e2da56c10633d47b561d4ca99115837237dded.tar.gz gcc-f8e2da56c10633d47b561d4ca99115837237dded.tar.bz2 |
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
-rw-r--r-- | libiberty/ChangeLog | 5 | ||||
-rw-r--r-- | libiberty/Makefile.in | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog index c1d0598..e61cec3 100644 --- a/libiberty/ChangeLog +++ b/libiberty/ChangeLog @@ -1,3 +1,8 @@ +2000-05-23 Mike Stump <mrs@wrs.com> + + * Makefile.in (xmalloc.o): Add dependency for config.h, fixes make + -j3. + 2000-05-18 J. David Anglin <dave@hiauly1.hia.nrc.ca> * xmalloc.c: Include config.h for HAVE_SBRK definition. diff --git a/libiberty/Makefile.in b/libiberty/Makefile.in index 96c6ff0..9a476f3 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 |