On Mon, Jul 1, 2013 at 5:04 PM, Andrew Dunstan <and...@dunslane.net> wrote: > These changes are fairly small and mostly non-invasive, but if I've broken > something we should find out about it fairly quickly, I hope.
Turns out you broke something. Specifically, contrib/spi now only installs autoinc.control instead of all the control files for extensions in that directory. Before: /usr/bin/install -c -m 644 ./autoinc.control ./insert_username.control ./moddatetime.control ./refint.control ./timetravel.control '/Users/rhaas/project/share/postgresql/extension/' /usr/bin/install -c -m 644 ./autoinc--1.0.sql ./autoinc--unpackaged--1.0.sql ./insert_username--1.0.sql ./insert_username--unpackaged--1.0.sql ./moddatetime--1.0.sql ./moddatetime--unpackaged--1.0.sql ./refint--1.0.sql ./refint--unpackaged--1.0.sql ./timetravel--1.0.sql ./timetravel--unpackaged--1.0.sql '/Users/rhaas/project/share/postgresql/extension/' /usr/bin/install -c -m 755 autoinc.so insert_username.so moddatetime.so refint.so timetravel.so '/Users/rhaas/project/lib/postgresql/' /usr/bin/install -c -m 644 ./autoinc.example ./insert_username.example ./moddatetime.example ./refint.example ./timetravel.example '/Users/rhaas/project/share/doc//postgresql/extension/' Now: /usr/bin/install -c -m 644 autoinc.control '/Users/rhaas/project/share/postgresql/extension/' /usr/bin/install -c -m 644 autoinc--1.0.sql autoinc--unpackaged--1.0.sql insert_username--1.0.sql insert_username--unpackaged--1.0.sql moddatetime--1.0.sql moddatetime--unpackaged--1.0.sql refint--1.0.sql refint--unpackaged--1.0.sql timetravel--1.0.sql timetravel--unpackaged--1.0.sql '/Users/rhaas/project/share/postgresql/extension/' /usr/bin/install -c -m 644 autoinc.example insert_username.example moddatetime.example refint.example timetravel.example '/Users/rhaas/project/share/doc//postgresql/extension/' /usr/bin/install -c -m 755 autoinc.so insert_username.so moddatetime.so refint.so timetravel.so '/Users/rhaas/project/lib/postgresql/' I'm not sure whether this is as simple as changing $< to $^ in the pgxs.mk's installcontrol rule, or if something more is required. Could you take a look? Thanks, -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-hackers