From 203c85c4ffaabf4e2d3c897144e03082681d97e3 Mon Sep 17 00:00:00 2001 From: Uri Lublin Date: Sun, 3 Jan 2010 09:04:06 +0200 Subject: client: remove '../common' from #include directive (subdir config) We compile with -I$(COMMON_DIR) (which currently is ../common), so there is no need for that. Later we would like to be able to have a different COMMON_DIR. Signed-off-by: Uri Lublin --- client/cairo_canvas.cpp | 2 +- client/canvas_utils.cpp | 2 +- client/gdi_canvas.cpp | 2 +- client/gl_canvas.cpp | 2 +- client/glc.cpp | 2 +- client/lz.cpp | 2 +- client/quic.cpp | 2 +- client/region.cpp | 2 +- client/rop3.cpp | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/client/cairo_canvas.cpp b/client/cairo_canvas.cpp index 54211e4d..3b6f71fd 100644 --- a/client/cairo_canvas.cpp +++ b/client/cairo_canvas.cpp @@ -20,5 +20,5 @@ #define CANVAS_ERROR(format, ...) THROW(format, ## __VA_ARGS__) -#include "../common/cairo_canvas.c" +#include "cairo_canvas.c" diff --git a/client/canvas_utils.cpp b/client/canvas_utils.cpp index 3210187b..0a8a4583 100644 --- a/client/canvas_utils.cpp +++ b/client/canvas_utils.cpp @@ -21,5 +21,5 @@ #define CANVAS_ERROR(format, ...) THROW(format, ## __VA_ARGS__) -#include "../common/canvas_utils.c" +#include "canvas_utils.c" diff --git a/client/gdi_canvas.cpp b/client/gdi_canvas.cpp index f8aaaef8..a05f89f8 100644 --- a/client/gdi_canvas.cpp +++ b/client/gdi_canvas.cpp @@ -20,5 +20,5 @@ #define CANVAS_ERROR(format, ...) THROW(format, ## __VA_ARGS__) -#include "../common/gdi_canvas.c" +#include "gdi_canvas.c" diff --git a/client/gl_canvas.cpp b/client/gl_canvas.cpp index e66be864..c8e6509b 100644 --- a/client/gl_canvas.cpp +++ b/client/gl_canvas.cpp @@ -17,5 +17,5 @@ #define GL_GLEXT_PROTOTYPES #include "common.h" -#include "../common/gl_canvas.c" +#include "gl_canvas.c" diff --git a/client/glc.cpp b/client/glc.cpp index 5a8e5990..cf818ca0 100644 --- a/client/glc.cpp +++ b/client/glc.cpp @@ -17,5 +17,5 @@ #define GL_GLEXT_PROTOTYPES #include "common.h" -#include "../common/glc.c" +#include "glc.c" diff --git a/client/lz.cpp b/client/lz.cpp index 9f104dfb..e42b4d38 100644 --- a/client/lz.cpp +++ b/client/lz.cpp @@ -16,5 +16,5 @@ */ #include "common.h" -#include "../common/lz.c" +#include "lz.c" diff --git a/client/quic.cpp b/client/quic.cpp index f992e50d..17a1e505 100644 --- a/client/quic.cpp +++ b/client/quic.cpp @@ -16,5 +16,5 @@ */ #include "common.h" -#include "../common/quic.c" +#include "quic.c" diff --git a/client/region.cpp b/client/region.cpp index dc0373c4..a881b6e2 100644 --- a/client/region.cpp +++ b/client/region.cpp @@ -16,5 +16,5 @@ */ #include "common.h" -#include "../common/region.c" +#include "region.c" diff --git a/client/rop3.cpp b/client/rop3.cpp index 5e5b4814..e9c95a27 100644 --- a/client/rop3.cpp +++ b/client/rop3.cpp @@ -16,5 +16,5 @@ */ #include "common.h" -#include "../common/rop3.c" +#include "rop3.c" -- cgit