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.

---------------------------(end of broadcast)---------------------------
TIP 2: Don't 'kill -9' the postmaster

Reply via email to