From 7f97c7ea9ade36bab817aca9eeee5c5177550127 Mon Sep 17 00:00:00 2001 From: Joe Thornber Date: Mon, 14 May 2018 10:30:20 +0100 Subject: build: Don't generate symlinks in include/ dir As we start refactoring the code to break dependencies (see doc/refactoring.txt), I want us to use full paths in the includes (eg, #include "base/data-struct/list.h"). This makes it more obvious when we're breaking abstraction boundaries, eg, including a file in metadata/ from base/ --- tools/toollib.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tools/toollib.h') diff --git a/tools/toollib.h b/tools/toollib.h index 0c9404c89..9102f55ae 100644 --- a/tools/toollib.h +++ b/tools/toollib.h @@ -16,8 +16,8 @@ #ifndef _LVM_TOOLLIB_H #define _LVM_TOOLLIB_H -#include "metadata-exported.h" -#include "report.h" +#include "lib/metadata/metadata-exported.h" +#include "lib/report/report.h" int become_daemon(struct cmd_context *cmd, int skip_lvm); -- cgit v1.2.1