"Alexis Wilke" <[EMAIL PROTECTED]> writes: > Inside pgxs.mk I had to change the $$libdir into $(libdir ) to get the > proper path in the final .sql file:
> ifneq (,$(MODULES)$(MODULE_big)) > %.sql: %.sql.in > sed 's,MODULE_PATHNAME,$(libdir)/$*,g' $< >$@ > endif This is not correct --- the substitution is supposed to be literally "$libdir", and so the makefile is correct as-is. (I'm not sure why we still bother with doing the sed conversion at all, except that if we removed it you can be sure we'd think of some other thing we needed it for ;-)) regards, tom lane ---------------------------(end of broadcast)--------------------------- TIP 6: Have you searched our list archives? http://archives.postgresql.org