diff options
author | Alexandre Oliva <aoliva@redhat.com> | 2003-01-28 21:53:39 +0000 |
---|---|---|
committer | Alexandre Oliva <aoliva@redhat.com> | 2003-01-28 21:53:39 +0000 |
commit | 578460f23e4f4f90b537eb0c52fc70146d289646 (patch) | |
tree | df72f9fd817b8b37c8bacb6c1a1032aa56cce957 /libiberty | |
parent | 1ae18a04ceb5b3a60107113733587d22c7b3d9b3 (diff) | |
download | gdb-578460f23e4f4f90b537eb0c52fc70146d289646.zip gdb-578460f23e4f4f90b537eb0c52fc70146d289646.tar.gz gdb-578460f23e4f4f90b537eb0c52fc70146d289646.tar.bz2 |
* Makefile.in (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):
Pass $(FLAGS_TO_PASS).
Diffstat (limited to 'libiberty')
-rw-r--r-- | libiberty/ChangeLog | 8 | ||||
-rw-r--r-- | libiberty/Makefile.in | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog index d8383a5..fe4aa60 100644 --- a/libiberty/ChangeLog +++ b/libiberty/ChangeLog @@ -1,3 +1,11 @@ +2003-01-28 Christian Cornelssen <ccorn@cs.tu-berlin.de> + + * Makefile.in (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): + Pass $(FLAGS_TO_PASS). + 2003-01-27 Alexandre Oliva <aoliva@redhat.com> * Makefile.in (install_to_tooldir): Instead of $(MULTISUBDIR), use diff --git a/libiberty/Makefile.in b/libiberty/Makefile.in index 2261169..8644b4b 100644 --- a/libiberty/Makefile.in +++ b/libiberty/Makefile.in @@ -398,7 +398,7 @@ maintainer-clean-subdir: config.h @subdirs='$(SUBDIRS)'; \ target=`echo $@ | sed -e 's/-subdir//'`; \ for dir in $$subdirs ; do \ - cd $$dir && $(MAKE) $$target; \ + cd $$dir && $(MAKE) $(FLAGS_TO_PASS) $$target; \ done $(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS): stamp-picdir |