Skip to content

Commit f4ccdb3

Browse files
committed
Fix VPATH-build problem in new tsearch makefile, per Chad Wagner.
1 parent 8a5592d commit f4ccdb3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/tsearch/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
# Copyright (c) 2006-2007, PostgreSQL Global Development Group
66
#
7-
# $PostgreSQL: pgsql/src/backend/tsearch/Makefile,v 1.1 2007/08/21 01:11:18 tgl Exp $
7+
# $PostgreSQL: pgsql/src/backend/tsearch/Makefile,v 1.2 2007/08/22 06:11:56 tgl Exp $
88
#
99
#-------------------------------------------------------------------------
1010
subdir = src/backend/tsearch
@@ -31,7 +31,7 @@ depend dep:
3131
.PHONY: install-data
3232
install-data: $(DICTFILES) installdirs
3333
for i in $(DICTFILES); \
34-
do $(INSTALL_DATA) $$i '$(DESTDIR)$(datadir)/$(DICTDIR)/'$$i; \
34+
do $(INSTALL_DATA) $(srcdir)/$$i '$(DESTDIR)$(datadir)/$(DICTDIR)/'$$i; \
3535
done
3636

3737
installdirs:

0 commit comments

Comments
 (0)