Date: Wed, 30 Aug 2000 16:13:54 +0300 (IDT) From: Eli Zaretskii X-Sender: eliz AT is To: Magnus Lewis-Smith cc: djgpp AT delorie DOT com Subject: Re: DJGPP perl port vs ActivePerl line length In-Reply-To: <8oilke$ns4$1@nh.pace.co.uk> 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 Wed, 30 Aug 2000, Magnus Lewis-Smith wrote: > system($command); > die("$script: failed ($command)\n") if ($? >> 8); > } > } > > Under ActivePerl the script executes properly, but under the DJGPP port > lines longer than 127 characters get truncated, and $repos may often exceed > 127 characters alone. If the program you invoke via `system' is not a DJGPP program, the command line will be truncated at 126 (not 127) characters. > Is there a solution or workaround, or will I have to live with this and use > ActivePerl? The solution and/or workaround depend on what kind of program is invoked via `system'. Please tell what it is.