qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] [PATCH 1/2] [trivial] Generic elimination of auto-gener


From: Lluís Vilanova
Subject: Re: [Qemu-devel] [PATCH 1/2] [trivial] Generic elimination of auto-generated files
Date: Wed, 18 Apr 2012 17:58:59 +0200
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.1.50 (gnu/linux)

Andreas Färber writes:

> Am 18.04.2012 16:11, schrieb Stefan Hajnoczi:
>> On Wed, Apr 18, 2012 at 2:37 PM, Lluís Vilanova <address@hidden> wrote:
>>> Stefan Hajnoczi writes:
>>> 
>>>> On Sat, Apr 14, 2012 at 12:19:03AM +0200, Lluís Vilanova wrote:
>>>>> -    rm -f $(GENERATED_HEADERS)
>>>>> -    rm -f $(GENERATED_SOURCES)
>>>>> +    rm -f $(foreach f,$(GENERATED_HEADERS),$(f) $(f)-timestamp */$(f) 
>>>>> */$(f)-timestamp)
>>>>> +    rm -f $(foreach f,$(GENERATED_SOURCES),$(f) $(f)-timestamp */$(f) 
>>>>> */$(f)-timestamp)
>>> 
>>>> Why */$(f) */$(f)-timestamp?
>>> 
>>> Some of the files are generated in immediate subdirectories (e.g.,
>>> libuser/trace.c-timestamp).
>>> 
>>> I could use the results of a call shell to "find" instead, so that it will
>>> always find the right victims no matter where they are.
>> 
>> Ah, I get it.  This actually adds something that was missing previously.
>> 
>> I'm not a make expert, I think if we try we can find issues with any
>> approach to removing the files.  What you've done seems fine to me :).

> Er, nack. libuser has its own Makefile.user, so we should recurse into
> libuser and rm from there. Is there an actual problem here apart from
> *-timestamp?

Nope. So I suppose right now it's better to keep it as:

    rm -f $(foreach f,$(GENERATED_HEADERS),$(f) $(f)-timestamp)
    rm -f $(foreach f,$(GENERATED_SOURCES),$(f) $(f)-timestamp)



Thanks,
  Lluis

-- 
 "And it's much the same thing with knowledge, for whenever you learn
 something new, the whole world becomes that much richer."
 -- The Princess of Pure Reason, as told by Norton Juster in The Phantom
 Tollbooth



reply via email to

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