From: | "Chad Wagner" <chad(dot)wagner(at)gmail(dot)com> |
---|---|
To: | pgsql-hackers(at)postgresql(dot)org |
Subject: | Re: tsearch2 patch status report |
Date: | 2007-08-22 00:10:37 |
Message-ID: | 81961ff50708211710l32b666f4j3bb463a561133d84@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
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:
From | Date | Subject | |
---|---|---|---|
Next Message | Merlin Moncure | 2007-08-22 01:24:02 | Re: tsearch2 patch status report |
Previous Message | Bruce Momjian | 2007-08-21 22:09:05 | Re: tsearch2 patch status report |