Just a heads up, not sure if you guys are aware of it.  But one of the
Makefile's (src/backend/tsearch/Makefile) added by this patch breaks the
"build out of source tree" feature of autoconf/automake.  The problem is
pretty straightforward, and after adding $(srcdir) everything seems to be
fine.

Index: src/backend/tsearch/Makefile
===================================================================
RCS file: /u01/mirrors/cvs/pgsql/pgsql/src/backend/tsearch/Makefile,v
retrieving revision 1.1
diff -p -c -r1.1 Makefile
*** src/backend/tsearch/Makefile        21 Aug 2007 01:11:18 -0000      1.1
--- src/backend/tsearch/Makefile        21 Aug 2007 23:58:37 -0000
*************** depend dep:
*** 31,37 ****
  .PHONY: install-data
  install-data: $(DICTFILES) installdirs
        for i in $(DICTFILES); \
!               do $(INSTALL_DATA) $$i
'$(DESTDIR)$(datadir)/$(DICTDIR)/'$$i; \
        done

  installdirs:
--- 31,37 ----
  .PHONY: install-data
  install-data: $(DICTFILES) installdirs
        for i in $(DICTFILES); \
!               do $(INSTALL_DATA) $(srcdir)/$$i
'$(DESTDIR)$(datadir)/$(DICTDIR)/'$$i; \
        done

  installdirs:

Reply via email to