diff options
author | Tom Lane | 2006-08-28 16:13:11 +0000 |
---|---|---|
committer | Tom Lane | 2006-08-28 16:13:11 +0000 |
commit | ae28cfe67353320a80f8fa21b96932f0d8effec1 (patch) | |
tree | 304aaf0da5c9635573d0fe77d98833d424622a90 /src/interfaces/ecpg/include/Makefile | |
parent | fcba3b82e2d4fe42a0acfb9251fd1a7b4862ca30 (diff) |
Partial fix for ecpg's VPATH problems. It compiles and successfully
builds all the files needed for its regression tests, but the tests
themselves fail because of diffs in the #line directives output by
ecpg itself. Not sure what to do about that.
Diffstat (limited to 'src/interfaces/ecpg/include/Makefile')
-rw-r--r-- | src/interfaces/ecpg/include/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/interfaces/ecpg/include/Makefile b/src/interfaces/ecpg/include/Makefile index 4f2c472c596..8cbf9b606cf 100644 --- a/src/interfaces/ecpg/include/Makefile +++ b/src/interfaces/ecpg/include/Makefile @@ -2,7 +2,8 @@ subdir = src/interfaces/ecpg/include top_builddir = ../../../.. include $(top_builddir)/src/Makefile.global -override CPPFLAGS := -DFRONTEND -I$(top_srcdir)/src/interfaces/ecpg/include \ +override CPPFLAGS := -DFRONTEND \ + -I../include -I$(top_srcdir)/src/interfaces/ecpg/include \ -I$(libpq_srcdir) -I$(top_builddir)/src/port $(CPPFLAGS) informix_esql_dir = $(pkgincludedir)/informix/esql |