Re: DTrace probe patch for OS X Leopard

From: Alvaro Herrera <alvherre(at)commandprompt(dot)com>
To: Robert Lor <Robert(dot)Lor(at)Sun(dot)COM>
Cc: pgsql-patches(at)postgresql(dot)org
Subject: Re: DTrace probe patch for OS X Leopard
Date: 2008-02-27 16:10:31
Message-ID: 20080227161031.GJ5694@alvh.no-ip.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-patches

Robert Lor wrote:

> 3) Note on src/backend/Makefile
> The current rule below does not work. After expansion, utils/probes.d
> needs
> to come right after -s, but currently it shows up at the end after all
> the .o files.
>
> utils/probes.o: utils/probes.d $(SUBDIROBJS)
> $(DTRACE) $(DTRACEFLAGS) -G -s $(call expand_subsys,$^) -o $@

Perhaps you need a $< there:

$(DTRACE) $(DTRACEFLAGS) -G -s $< $(call expand_subsys,$^) -o $@

However I think you would also need to $(filter-out) the $< from $^.

--
Alvaro Herrera http://www.CommandPrompt.com/
The PostgreSQL Company - Command Prompt, Inc.

In response to

Responses

Browse pgsql-patches by date

  From Date Subject
Next Message Robert Lor 2008-02-27 17:23:19 Re: DTrace probe patch for OS X Leopard
Previous Message Robert Lor 2008-02-27 16:05:25 DTrace probe patch for OS X Leopard