summaryrefslogtreecommitdiff
path: root/Kernel
diff options
context:
space:
mode:
authorTimon Kruiper <timonkruiper@gmail.com>2022-05-14 13:53:53 +0200
committerLinus Groh <mail@linusgroh.de>2022-05-21 20:23:32 +0100
commit5fc66c6072ddd047ec0906098de770dbc48b2f7e (patch)
treeadbce9b5da5e275e3bf14698f7dcb14b69c05bd3 /Kernel
parent9f3303c869ea9327defc1297b654ee0ee8bb062a (diff)
downloadserenity-5fc66c6072ddd047ec0906098de770dbc48b2f7e.zip
Kernel: Fix capitalization of MiniStdLib.cpp in CMakeLists.txt
Commit fd3e3d5e28f729c05427d1c3cfe95e1ae3f62e39 added this, however misspelled MiniStdLib.cpp. CMake wasn't complaining about this, but the flags were also not applied to the file.
Diffstat (limited to 'Kernel')
-rw-r--r--Kernel/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/CMakeLists.txt b/Kernel/CMakeLists.txt
index cbefd82de2..56821c98c9 100644
--- a/Kernel/CMakeLists.txt
+++ b/Kernel/CMakeLists.txt
@@ -487,7 +487,7 @@ if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
# Prevent naively implemented string functions (like strlen) from being "optimized" into a call to themselves.
- set_source_files_properties(MiniStdlib.cpp
+ set_source_files_properties(MiniStdLib.cpp
PROPERTIES COMPILE_FLAGS "-fno-tree-loop-distribution -fno-tree-loop-distribute-patterns")
add_link_options(LINKER:-z,pack-relative-relocs)