contrib-global.mk and sql.in question - Mailing list pgsql-bugs

From Robert Creager
Subject contrib-global.mk and sql.in question
Date
Msg-id 20030822223126.7dd8ac5d.Robert_Creager@LogicalChaos.org
Whole thread Raw
List pgsql-bugs
Hey,

Just wondering if the rule:

%.sql: %.sql.in
        sed 's,MODULE_PATHNAME,$$libdir/$*g' $< >$@

is supposed to produce files like this:

CREATE OR REPLACE FUNCTION pgxml_parse(text) RETURNS boolean
    AS '$libdir/pgxml_dom' LANGUAGE c STRICT;

I'm using GNU sed version 4.0.3.

I find the following patch makes it work for me, but I'm not sure if this is a
bug, feature, or something else?

*** contrib-global.mk.orig      2003-08-22 22:20:33.000000000 -0600
--- contrib-global.mk   2003-08-22 22:22:26.000000000 -0600
***************
*** 225,231 ****

  ifneq (,$(MODULES)$(MODULE_big))
  %.sql: %.sql.in
!       sed 's,MODULE_PATHNAME,$$libdir/$*,g' $< >$@
  endif

  ifdef PROGRAM
--- 225,231 ----

  ifneq (,$(MODULES)$(MODULE_big))
  %.sql: %.sql.in
!       @sed 's:MODULE_PATHNAME:$(libdir)/$*:g' $< >$@
  endif

  ifdef PROGRAM

--
 22:17:58 up 21 days, 14:59,  4 users,  load average: 2.10, 2.04, 2.01

pgsql-bugs by date:

Previous
From: Kevin Houle
Date:
Subject: Re: DBD::Pg 'lo_read' fails on >= 32768 byte large objects
Next
From: "Sergiusz Michalski"
Date:
Subject: setof type and later table bug??