diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2002-11-01 23:23:29 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2002-11-01 23:23:29 +0000 |
commit | 97915fcd144d99d280d70a0a72ddc9d8058f2bef (patch) | |
tree | 6ecbf1c3c450d92abe37edcac6aa55a3592e437d | |
parent | e9e919f4ee6ba3ee1bdef4e3afac2a94ab0ae955 (diff) | |
download | postgresql-97915fcd144d99d280d70a0a72ddc9d8058f2bef.tar.gz postgresql-97915fcd144d99d280d70a0a72ddc9d8058f2bef.zip |
Need -I. to build outside source tree.
-rw-r--r-- | contrib/tsearch/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/contrib/tsearch/Makefile b/contrib/tsearch/Makefile index ee6eeb1e841..ce30d76807a 100644 --- a/contrib/tsearch/Makefile +++ b/contrib/tsearch/Makefile @@ -1,9 +1,11 @@ -# $Header: /cvsroot/pgsql/contrib/tsearch/Attic/Makefile,v 1.2 2002/11/01 22:52:33 tgl Exp $ +# $Header: /cvsroot/pgsql/contrib/tsearch/Attic/Makefile,v 1.3 2002/11/01 23:23:29 tgl Exp $ subdir = contrib/tsearch top_builddir = ../.. include $(top_builddir)/src/Makefile.global +override CPPFLAGS := -I. $(CPPFLAGS) + MODULE_big = tsearch OBJS = crc32.o morph.o txtidx.o query.o gistidx.o rewrite.o |