From: "Tim Van Holder" To: Subject: Re: ANNOUNCE: autoconf 2.50 Date: Sat, 26 May 2001 18:34:29 +0200 Message-ID: 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 IMO, Build 9.0.2416 (9.0.2910.0) In-Reply-To: <3B0FEA31.22350.29FDE3@localhost> Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 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 > C:\Devel\autoconf\gnu\acnf250s>sh > sh-2.04$ pwd > c:/Devel/autoconf/gnu/acnf250s > sh-2.04$ autoconf > NONE:0: /dev/env/DJDIR/bin/m4.exe: `changeword' from frozen file > not found in bu > iltin table! This one I haven't seen before. Checking m4-14s.zip. Drat - seems like the DJGPP package for m4 was built with changeword disabled :-( I'll upload a new m4 package shortly. > Target of redirect is not a filename. > configure.in:3: error: m4_file_append: cannot write: > e:/tmp/ac6782/forbidden.rx > configure.in:3: the top level This is caused by your SHELL variable. libc's system() is only smart enough to handle advanced shell features (such as the here-docs used from m4 in autoconf 2.50) if SHELL is a _full path_ to a unixy shell (including extension). So if you now have SHELL=/bin/sh or even SHELL=$DJDIR/bin/bash, you'll need to change it to include the .exe extension (I'd suggest /dev/env/DJDIR/bash.exe). I thought I had this in README.dj, but it turns out I only have a comment about this in the config.site. *grmbl* Guess I should have done a short public beta first. Thanks for trying it out!