bug-make
[Top][All Lists]
Advanced

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

Re: Windows XP and make 3.80


From: Eli Zaretskii
Subject: Re: Windows XP and make 3.80
Date: Sat, 06 May 2006 00:20:06 +0300

> Date: Fri, 05 May 2006 10:14:38 -0400
> From: =?ISO-8859-1?Q?Pablo_Alarc=F3n_Pavez?= <address@hidden>
> 
> Command: make clean
> OS: Windows XP version 2002, service pack 2
> make version: 3.80
> 
> It interprets "rmdir /q /s lib" as rmdir /q, rmdir /s and rmdir lib with 
> errors.

Do you have an rmdir.exe program somewhere on your PATH?  Or perhaps
you have a Unixy shell sh.exe somewhere?  If so, Make will invoke
those Unix-style rmdir commands in preference to the cmd.exe built-in.

If you want to be sure the cmd's rmdir is invoked, I suggest to modify
your Makefile as follows:

clean: 
        @echo make version 3.80 and Windows XP 2002 SP2
        cmd.exe /c rmdir /q /s lib




reply via email to

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