From f89d6ba125b921078f427c44ff93c8636251e0a4 Mon Sep 17 00:00:00 2001 From: Amine Khaldi Date: Sat, 31 Oct 2015 10:33:28 +0000 Subject: [PATCH] [EXT2FS] Do not define _X86_ unconditionally. Spotted by Sergey Chernov. CORE-10448 svn path=/trunk/; revision=69746 --- reactos/drivers/filesystems/ext2/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/drivers/filesystems/ext2/CMakeLists.txt b/reactos/drivers/filesystems/ext2/CMakeLists.txt index 1be53f052b7..ec64b1aa4bf 100644 --- a/reactos/drivers/filesystems/ext2/CMakeLists.txt +++ b/reactos/drivers/filesystems/ext2/CMakeLists.txt @@ -97,7 +97,7 @@ else() endif() target_link_libraries(ext2fs memcmp ${PSEH_LIB}) -add_definitions(-D__KERNEL__ -D_X86_) +add_definitions(-D__KERNEL__) set_module_type(ext2fs kernelmodedriver) add_importlibs(ext2fs ntoskrnl hal) add_pch(ext2fs inc/ext2fs.h SOURCE)