make-w32
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: process_begin: error in make


From: Greg Chicares
Subject: Re: process_begin: error in make
Date: Thu, 28 Mar 2002 15:16:04 -0500

Chris Marshall wrote:
> 
> Here is my make file:
> 
> -----------------
> 
> SHELL = e:\updates\cmd.exe
> 
> clean_nt :
> <tab>del hello.exe
> 
> -----------------
> 
> When I type make clean_nt, I get the following message:
> 
> -----------------
> 
> del hello.exe
> process_begin: CreateProcess(e:\make3602.bat, e:\make3602.bat ....) failed.
> make (e=2): The system cannot find the file specified.
> make: [clean_nt] Error 2

Try changing the clean_nt rule to this:

<tab>$(shell CMD /c del hello.exe)

or use an nt port of gnu rm instead of del.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]