X-Authentication-Warning: delorie.com: mailnull set sender to djgpp-workers-bounces using -f From: "Tim Van Holder" To: Subject: Some small bash issues Date: Wed, 13 Feb 2002 20:32:31 +0100 Message-ID: <000001c1b4c5$2e25a2e0$e4f8e0d5@zastaixp> 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.3416 Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Reply-To: djgpp-workers AT delorie DOT com Two small things, present in bash 2.05 (including latest binary from clio (dated 20020203)) on WinXP. Not sure if I mentioned these already (if so, sorry for the duplication). - readline not quite OK (Del, Ctl-Left, Ctl-Right, ... don't work) - some issues with envvars: foo=bar echo $foo is supposed to print "bar", but doesn't. This breaks a lot of things; for example, autoconf and automake will not build out-of-the-box, as Perl packages they use aren't installed yet (esp. the case for automake, as that now uses versioned install locations (i.e. share/automake-1.5e)). They run perllibdir='$srcdir/lib' ./automake ... but Perl never gets $perllibdir, so it doesn't get added to @INC. Using foo=bar; echo $foo DOES print "bar", so a temporary workaround is possible; I'd still like to see it fixed though.