From: "Tim Van Holder" To: , "'Mark E.'" , "'Charles Sandmann'" Subject: Re: Bash 2.05 beta of 28-Aug-2001 query Date: Sat, 1 Sep 2001 19:25:17 +0200 Message-ID: <000201c1330b$11732460$227c76d5@pandora.be> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.2627 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 In-Reply-To: <001201c132bf$c3422980$0a02a8c0@acceleron> Importance: Normal Reply-To: djgpp-workers AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp-workers AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk > ! gcc_version_trigger = /dev/c/dj204/gnu/gcc-2.953/gcc/version.c > --- 22 ---- > ! gcc_version_trigger = /dj204/gnu/gcc-2.953/gcc/version.c The only difference here is that somehow the path was made completely absolute (maybe an extra pwd call somewhere); this may be an internal bash change. In any case, it's probably harmless. > ! CONFIG_ARGUMENTS = -- This is definitely a problem; for some reason the arg array was lost. It's very strange that this was not reflected in config.status as well. > ! ac_cv_path_install=${ac_cv_path_install='ginstall -c'} > --- 115 ---- > ! ac_cv_path_install=${ac_cv_path_install=$'ginstall -c'} This is probably a bash quirk as well ($'foo' is bash shorthand for "the localized version of the string 'foo'", I think). Could be harmless, but it may cause trouble on a heavily localized system.