X-Authentication-Warning: delorie.com: mailnull set sender to djgpp-bounces using -f Date: Tue, 26 Mar 2002 08:46:23 +0200 (IST) From: Eli Zaretskii X-Sender: eliz AT is To: djgpp AT delorie DOT com Subject: Re: Re-inventing the wheel... In-Reply-To: <2cf22887.0203252107.2cc08802@posting.google.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On 25 Mar 2002, badri8088 wrote: > It says > "...you'll need to play around with the configure script > so that it runs on DOS. Changing the configure scripts manually is a > pain and isn't recommended for good reasons. So you'll most probably > want to write an sed script that changes the offending filenames into 8.3 format.." > > What's a sed script ?? Sed is a batch editor; see v2gnu/sed3028b.zip. It takes a script of editing command, and then modifies each file passed to it as an argument using those commands. For example, the command sed -e s/foo/bar/g file will produce to the standard output the named FILE with every instance of `foo' replaced with `bar'. > Where can I get the GNU coding standards?(What's that ?) ftp://ftp.gnu.org/gnu/GNUinfo/standards.info. This document describes the coding standards of the GNU project.