Re: [Fish-users] `` vs ()

2016-12-12 Thread Kurtis Rader
On Mon, Dec 12, 2016 at 2:31 PM, John Chludzinski < john.chludzin...@gmail.com> wrote: > On the Bourne shell I can use: > > sh-4.1$ gcc `pkg-config gtk+-2.0 --cflags` `pkg-config gtk+-2.0 --libs` > dbuscomm.c > > > When I try (in Fish): > > > gcc (pkg-config gtk+-2.0 --cflags) (pkg-config gtk+-2.

[Fish-users] `` vs ()

2016-12-12 Thread John Chludzinski
On the Bourne shell I can use: sh-4.1$ gcc `pkg-config gtk+-2.0 --cflags` `pkg-config gtk+-2.0 --libs` dbuscomm.c When I try (in Fish): > gcc (pkg-config gtk+-2.0 --cflags) (pkg-config gtk+-2.0 --libs) dbuscomm.c I get a whole bunch of bogus compile errors. Why? -