diff options
author | DJ Delorie <dj@redhat.com> | 2001-11-26 16:24:43 -0500 |
---|---|---|
committer | DJ Delorie <dj@gcc.gnu.org> | 2001-11-26 16:24:43 -0500 |
commit | 97e620cf89a1cdb7768f3c9a150531364f3520b4 (patch) | |
tree | 6fb4678f1d72aa6e400b5efeccc3f1eff9b5ce92 /libiberty | |
parent | 4dcc42a39cadfb7d8f04de0d93dd11998289b16a (diff) | |
download | gcc-97e620cf89a1cdb7768f3c9a150531364f3520b4.zip gcc-97e620cf89a1cdb7768f3c9a150531364f3520b4.tar.gz gcc-97e620cf89a1cdb7768f3c9a150531364f3520b4.tar.bz2 |
Makefile.in (stamp-h): Depend on Makefile for proper serialization.
* Makefile.in (stamp-h): Depend on Makefile for proper
serialization.
(*-subdir): Depend on config.h for proper serialization.
Co-Authored-By: Daniel Jacobowitz <drow@mvista.com>
From-SVN: r47354
Diffstat (limited to 'libiberty')
-rw-r--r-- | libiberty/ChangeLog | 7 | ||||
-rw-r--r-- | libiberty/Makefile.in | 9 |
2 files changed, 14 insertions, 2 deletions
diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog index 40f73b6..4758fc6 100644 --- a/libiberty/ChangeLog +++ b/libiberty/ChangeLog @@ -1,4 +1,11 @@ 2001-11-26 DJ Delorie <dj@redhat.com> + Daniel Jacobowitz <drow@mvista.com> + + * Makefile.in (stamp-h): Depend on Makefile for proper + serialization. + (*-subdir): Depend on config.h for proper serialization. + +2001-11-26 DJ Delorie <dj@redhat.com> * configure.in: Check for alloca.h (for regex.c and putenv.c). * configure: Regenerate. diff --git a/libiberty/Makefile.in b/libiberty/Makefile.in index 877e0a9..093c449 100644 --- a/libiberty/Makefile.in +++ b/libiberty/Makefile.in @@ -300,17 +300,22 @@ force: Makefile: $(srcdir)/Makefile.in config.status CONFIG_FILES=Makefile CONFIG_HEADERS= $(SHELL) ./config.status +# Depending on Makefile makes sure that config.status has been re-run +# if needed. This prevents problems with parallel builds. config.h: stamp-h ; @true -stamp-h: config.in config.status +stamp-h: config.in config.status Makefile CONFIG_FILES= CONFIG_HEADERS=config.h:config.in $(SHELL) ./config.status config.status: $(srcdir)/configure $(srcdir)/config.table $(SHELL) ./config.status --recheck +# Depending on config.h makes sure that config.status has been re-run +# if needed. This prevents problems with parallel builds, in case +# subdirectories need to run config.status also. all-subdir check-subdir installcheck-subdir info-subdir \ install-info-subdir clean-info-subdir dvi-subdir install-subdir \ etags-subdir mostlyclean-subdir clean-subdir distclean-subdir \ -maintainer-clean-subdir: +maintainer-clean-subdir: config.h @subdirs='$(SUBDIRS)'; \ target=`echo $@ | sed -e 's/-subdir//'`; \ for dir in $$subdirs ; do \ |