Date: Thu, 14 Jun 2001 16:08:16 +0300 (IDT) From: Eli Zaretskii X-Sender: eliz AT is To: "H.Merijn Brand" cc: djgpp AT delorie DOT com Subject: Re: Gnu compiler for Perl In-Reply-To: <20010614145506.EFE4.H.M.BRAND@hccnet.nl> 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 Thu, 14 Jun 2001, H.Merijn Brand wrote: > > Does a simple "echo foo > /dev/null" fails as well? How about > > "echo foo >> /dev/null"? > > > > If it does, please write a short test program that does imilar things, > > and step into the I/O functions with a debugger. We must understand > > what's wrong there to devise a solution or a work-around. > > C:\Tmp> sh > sh-2.03$ echo Help > Help > sh-2.03$ echo Help >/dev/null > sh: /dev/null: Permission denied (EACCESS) > sh-2.03$ echo Help >>/dev/null So, what happens if you edit Configure and replace all ">" with ">>" when the target is /dev/null? Does the script succeed to run then?