Re: [HACKERS] Multiple Extensions

2011-11-11 Thread David E. Wheeler
On Nov 11, 2011, at 11:04 AM, Dimitri Fontaine wrote:

   EXTENSION= pgtap pgtap-core pgtap-schema
>>  https://github.com/theory/pgtap/blob/master/Makefile
> 
> I don't see the line above in the file you linked.  The content of the
> Makefile I just read is not using multiple extensions at all, it's re
> implementing all of it for itself.

Yeah, I had checked it in unbroken. I’ve since fixed it.

Thanks,

David
-- 
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers


Re: [HACKERS] Multiple Extensions

2011-11-11 Thread Dimitri Fontaine
"David E. Wheeler"  writes:
>>>EXTENSION= pgtap pgtap-core pgtap-schema
>   https://github.com/theory/pgtap/blob/master/Makefile

I don't see the line above in the file you linked.  The content of the
Makefile I just read is not using multiple extensions at all, it's re
implementing all of it for itself.

Regards,
-- 
Dimitri Fontaine
http://2ndQuadrant.fr PostgreSQL : Expertise, Formation et Support

-- 
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers


Re: [HACKERS] Multiple Extensions

2011-11-11 Thread David E. Wheeler
On Nov 11, 2011, at 9:20 AM, David E. Wheeler wrote:

>> Can we see your Makefile?
> 
> Right here:
> 
>  https://github.com/theory/pgtap/blob/master/Makefile

Oy, this is stupidly my fault. I blame the late hours and the second stout.

Thanks,

David


-- 
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers


Re: [HACKERS] Multiple Extensions

2011-11-11 Thread David E. Wheeler
On Nov 11, 2011, at 4:27 AM, Dimitri Fontaine wrote:

>>EXTENSION= pgtap pgtap-core pgtap-schema
> 
> See contrib/spi/Makefile for an exemple of that.

Okay, good, it *should* work then.

>>> make
>>Makefile:79: *** multiple target patterns.  Stop.
>> 
>> So is that not supported? If not, why not?
> 
> Can we see your Makefile?

Right here:

  https://github.com/theory/pgtap/blob/master/Makefile

Best,

David


-- 
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers


Re: [HACKERS] Multiple Extensions

2011-11-11 Thread Dimitri Fontaine
"David E. Wheeler"  writes:
> EXTENSION= pgtap pgtap-core pgtap-schema

See contrib/spi/Makefile for an exemple of that.

> > make
> Makefile:79: *** multiple target patterns.  Stop.
>
> So is that not supported? If not, why not?

Can we see your Makefile?

Regards,
-- 
Dimitri Fontaine
http://2ndQuadrant.fr PostgreSQL : Expertise, Formation et Support

-- 
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers


[HACKERS] Multiple Extensions

2011-11-10 Thread David E. Wheeler
Hackers,

I’m preparing a new release of pgTAP, and have started breaking it down into 
smaller extensions. I’ve been planning to have them all in one distribution 
file for now, but it seems that one cannot specify multiple extension names in 
the EXTENSION variable. In my Makefile, I have

EXTENSION= pgtap pgtap-core pgtap-schema

But having more than the one, I get:

> make
grep: pgtap: No such file or directory
grep: pgtap-core: No such file or directory
grep: pgtap: No such file or directory
grep: pgtap-core: No such file or directory
grep: pgtap: No such file or directory
grep: pgtap-core: No such file or directory
Makefile:79: *** multiple target patterns.  Stop.

So is that not supported? If not, why not?

Thanks,

David


-- 
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers