Message-ID: <3934EC86.6E2815B4@softhome.net> Date: Wed, 31 May 2000 13:42:14 +0300 From: Laurynas Biveinis X-Mailer: Mozilla 4.72 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: djgpp-workers AT delorie DOT com, "Mark E." Subject: Re: Bash 2.04 beta 5 released References: <39323742 DOT 24349 DOT 34191F AT localhost> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Reply-To: djgpp-workers AT delorie DOT com "Mark E." wrote: > I have released Bash 2.04 beta 5 which corrects a number of problems: Comments about source: 1) Is it OK to distribute config.cache with sources? IMHO it conflicts with point of reconfiguration. 2) make fails with 'No rule to create tminit.o required by bash.exe' (not exact wording). It seems that tminit.o is specified twice in makefiles - once in lib/dos/Makefile, and second time in ./Makefile - bash.exe depends on tminit.o while it is already provided by libdos.a. Patch below should fix that. 3) A .DSM for sources would be welcome 4) Just a minor note - now, when CPU detection is in CVS, if somebody rebuilds shell-utils, he will get config.guess failure. How about updating to recent config.guess/config.sub versions from their main CVS repository? KUTGW, Laurynas diff -u -r bash-2.04/Makefile bash-2.04.my/Makefile --- bash-2.04/Makefile Tue May 30 23:54:24 2000 +++ bash-2.04.my/Makefile Wed May 31 13:16:14 2000 @@ -362,7 +362,7 @@ trap.o input.o unwind_prot.o pathexp.o sig.o test.o version.o \ alias.o array.o braces.o bracecomp.o bashhist.o bashline.o \ siglist.o list.o stringlib.o locale.o findcmd.o redir.o \ - pcomplete.o pcomplib.o xmalloc.o tminit.o + pcomplete.o pcomplib.o xmalloc.o # Where the source code of the shell builtins resides. BUILTIN_SRCDIR=$(srcdir)/builtins diff -u -r bash-2.04/Makefile.in bash-2.04.my/Makefile.in --- bash-2.04/Makefile.in Tue May 30 23:53:54 2000 +++ bash-2.04.my/Makefile.in Wed May 31 13:16:08 2000 @@ -361,7 +361,7 @@ trap.o input.o unwind_prot.o pathexp.o sig.o test.o version.o \ alias.o array.o braces.o bracecomp.o bashhist.o bashline.o \ siglist.o list.o stringlib.o locale.o findcmd.o redir.o \ - pcomplete.o pcomplib.o xmalloc.o tminit.o + pcomplete.o pcomplib.o xmalloc.o # Where the source code of the shell builtins resides. BUILTIN_SRCDIR=$(srcdir)/builtins