diff options
author | Michael Meskes | 2010-03-22 07:41:20 +0000 |
---|---|---|
committer | Michael Meskes | 2010-03-22 07:41:20 +0000 |
commit | ecac5e6bfc3b236b41ea282f5625203d5ee90b55 (patch) | |
tree | 15c68929329f340585997b57d263c9f3c22fbc9d | |
parent | 0885dd15171cf0f24074318fa178a122d6313558 (diff) |
Fixed ECPG regression test to make sure it uses absolute paths for include
files instead of relative ones which break vpath builds.
-rw-r--r-- | src/interfaces/ecpg/test/preproc/strings.pgc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/ecpg/test/preproc/strings.pgc b/src/interfaces/ecpg/test/preproc/strings.pgc index 7d85362607..d6ec9a4cb8 100644 --- a/src/interfaces/ecpg/test/preproc/strings.pgc +++ b/src/interfaces/ecpg/test/preproc/strings.pgc @@ -1,7 +1,7 @@ -#include "../regression.h" +#include <../regression.h> exec sql begin declare section; -#include "strings.h" +#include <strings.h> exec sql end declare section; int main(void) |