]> granicus.if.org Git - postgresql/commitdiff
Fixed ECPG regression test to make sure it uses absolute paths for include
authorMichael Meskes <meskes@postgresql.org>
Mon, 22 Mar 2010 07:41:20 +0000 (07:41 +0000)
committerMichael Meskes <meskes@postgresql.org>
Mon, 22 Mar 2010 07:41:20 +0000 (07:41 +0000)
files instead of relative ones which break vpath builds.

src/interfaces/ecpg/test/preproc/strings.pgc

index 7d853626079d7b07479ffc57e1b54caabbeb8f5d..d6ec9a4cb813064ada9cbd170eab728e18480eb9 100644 (file)
@@ -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)