Re: Somewhat OT: Using Pipes Inside a GNU Make File

2012-09-06 Thread Tim Daneliuk
On 09/05/2012 09:15 PM, Warren Block wrote: On Wed, 5 Sep 2012, Tim Daneliuk wrote: On 09/05/2012 07:24 PM, Bryan Drewery wrote: On 9/5/2012 7:02 PM, Tim Daneliuk wrote: A bit off topic, but I'm kind of stuck. I am using gmake and want to do something like this: FOO := $(shell a | b | c

Re: Somewhat OT: Using Pipes Inside a GNU Make File

2012-09-05 Thread Warren Block
On Wed, 5 Sep 2012, Tim Daneliuk wrote: On 09/05/2012 07:24 PM, Bryan Drewery wrote: On 9/5/2012 7:02 PM, Tim Daneliuk wrote: A bit off topic, but I'm kind of stuck. I am using gmake and want to do something like this: FOO := $(shell a | b | c) But this appears not to work. Only the 'a

Re: Somewhat OT: Using Pipes Inside a GNU Make File

2012-09-05 Thread Tim Daneliuk
On 09/05/2012 07:24 PM, Bryan Drewery wrote: On 9/5/2012 7:02 PM, Tim Daneliuk wrote: A bit off topic, but I'm kind of stuck. I am using gmake and want to do something like this: FOO := $(shell a | b | c) But this appears not to work. Only the 'a' command is executed. The remainder of t

Re: Somewhat OT: Using Pipes Inside a GNU Make File

2012-09-05 Thread Bryan Drewery
On 9/5/2012 7:02 PM, Tim Daneliuk wrote: > A bit off topic, but I'm kind of stuck. I am using gmake and want to > do something like this: > >FOO := $(shell a | b | c) > > But this appears not to work. Only the 'a' command is executed. The > remainder > of the pipeline is ignored. Is there

Somewhat OT: Using Pipes Inside a GNU Make File

2012-09-05 Thread Tim Daneliuk
A bit off topic, but I'm kind of stuck. I am using gmake and want to do something like this: FOO := $(shell a | b | c) But this appears not to work. Only the 'a' command is executed. The remainder of the pipeline is ignored. Is there some clean way to implement this kind of thing? -- --