diff options
author | Joe Thornber <ejt@redhat.com> | 2018-05-14 10:30:20 +0100 |
---|---|---|
committer | Joe Thornber <ejt@redhat.com> | 2018-05-14 10:30:20 +0100 |
commit | 7f97c7ea9ade36bab817aca9eeee5c5177550127 (patch) | |
tree | 2fac9b50b16b91dd22ca155223c26beba9677377 /tools/lvmcmdlib.c | |
parent | 02b99be57eab4f55bd0db045a3873bdf5e500b92 (diff) | |
download | lvm2-7f97c7ea9ade36bab817aca9eeee5c5177550127.tar.gz |
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/
Diffstat (limited to 'tools/lvmcmdlib.c')
-rw-r--r-- | tools/lvmcmdlib.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/lvmcmdlib.c b/tools/lvmcmdlib.c index 5944576ee..9f94b5c22 100644 --- a/tools/lvmcmdlib.c +++ b/tools/lvmcmdlib.c @@ -16,10 +16,10 @@ #include "tools.h" #include "lvm2cmdline.h" -#include "label.h" -#include "memlock.h" +#include "lib/label/label.h" +#include "lib/mm/memlock.h" -#include "lvm2cmd.h" +#include "tools/lvm2cmd.h" #include <signal.h> #include <sys/stat.h> |