From 6f383ce55d25d080deb9d52461e08a23eb31424b Mon Sep 17 00:00:00 2001 From: Ken Raeburn Date: Fri, 4 Nov 1994 00:07:02 +0000 Subject: [PATCH] Changes from binutils-2.5.2 net release: * Makefile.in (install-info): Install info files from whatever directory they were found in. Patch from DJ Delorie: * configure.bat: do c++filt -> cxxfilt right * sysinfo.y: Include system header files early, so any potential declaration of abort() occurs before its use. * strings.c (strings_file): Try opening the file in binary mode first. --- binutils/ChangeLog | 14 ++++++++++++++ binutils/Makefile.in | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 9012c9dd24..9d068021ca 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,17 @@ +Thu Nov 3 19:04:34 1994 Ken Raeburn + + * Makefile.in (install-info): Install info files from whatever + directory they were found in. + + Patch from DJ Delorie: + * configure.bat: do c++filt -> cxxfilt right + + * sysinfo.y: Include system header files early, so any potential + declaration of abort() occurs before its use. + + * strings.c (strings_file): Try opening the file in binary mode + first. + Wed Nov 2 15:44:13 1994 Ian Lance Taylor * ar.c (main): Treat ar qs like ar rs. diff --git a/binutils/Makefile.in b/binutils/Makefile.in index 41e395fd19..d3ec002866 100644 --- a/binutils/Makefile.in +++ b/binutils/Makefile.in @@ -559,7 +559,7 @@ install-info: binutils.info dir=$(srcdir) ; \ fi ; \ for i in `cd $$dir; echo binutils.info*` ; do \ - $(INSTALL_DATA) $$i $(infodir)/$$i ; \ + $(INSTALL_DATA) $$dir/$$i $(infodir)/$$i ; \ done clean-info: -- 2.34.1