From d934457d737ea36f85b9cde896af7627524bdfff Mon Sep 17 00:00:00 2001 From: Alex Ionescu Date: Sun, 4 Oct 2015 20:23:25 +0000 Subject: [PATCH] [MKHIVE]: - Whoever wrote mkhive ran into the problem I just did, and realized hey-i-dont-fucking-want-to-use-that-almost-copy-pasted-but-not-shared-code-so-why-dont-i-use-the-good-kernel-code-instead... but instead of taking the time to create a fucking library like I just did (cause that would be hard man, and fixing headers n' shit), just hard-coded the paths to the kernel files directly like a lazy shit. Fix mkhive to just rely on cmlib, which now has the files shared there. svn path=/trunk/; revision=69445 --- reactos/tools/mkhive/CMakeLists.txt | 2 -- reactos/tools/mkhive/cmindex.c | 1 - reactos/tools/mkhive/cmname.c | 1 - 3 files changed, 4 deletions(-) delete mode 100644 reactos/tools/mkhive/cmindex.c delete mode 100644 reactos/tools/mkhive/cmname.c diff --git a/reactos/tools/mkhive/CMakeLists.txt b/reactos/tools/mkhive/CMakeLists.txt index 66a91d3f735..5faaa20af12 100644 --- a/reactos/tools/mkhive/CMakeLists.txt +++ b/reactos/tools/mkhive/CMakeLists.txt @@ -9,8 +9,6 @@ include_directories( list(APPEND SOURCE binhive.c cmi.c - cmindex.c - cmname.c mkhive.c reginf.c registry.c diff --git a/reactos/tools/mkhive/cmindex.c b/reactos/tools/mkhive/cmindex.c deleted file mode 100644 index 0476cc9a4c6..00000000000 --- a/reactos/tools/mkhive/cmindex.c +++ /dev/null @@ -1 +0,0 @@ -#include "../../ntoskrnl/config/cmindex.c" diff --git a/reactos/tools/mkhive/cmname.c b/reactos/tools/mkhive/cmname.c deleted file mode 100644 index 00c713212aa..00000000000 --- a/reactos/tools/mkhive/cmname.c +++ /dev/null @@ -1 +0,0 @@ -#include "../../ntoskrnl/config/cmname.c"