diff options
author | Brian Gianforcaro <bgianf@serenityos.org> | 2022-04-03 15:09:44 -0700 |
---|---|---|
committer | Brian Gianforcaro <b.gianfo@gmail.com> | 2022-04-03 15:18:36 -0700 |
commit | 8b750998d28221d31998f6025a469aef4420b586 (patch) | |
tree | d960fce4023cae527f7fc0b2768cd40298357144 | |
parent | d6e4a25e0c671437924703603e4b3f4a85887098 (diff) | |
download | serenity-8b750998d28221d31998f6025a469aef4420b586.zip |
Kernel: Fix aarch64 kernel build on case sensitive file systems
The dummy file has the wrong case, so it would fail to be found on case
sensitive file systems.
-rw-r--r-- | Kernel/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/CMakeLists.txt b/Kernel/CMakeLists.txt index b668c68891..0452c6c19f 100644 --- a/Kernel/CMakeLists.txt +++ b/Kernel/CMakeLists.txt @@ -404,7 +404,7 @@ else() Arch/aarch64/UART.cpp Arch/aarch64/Utils.cpp - Arch/aarch64/Dummy.cpp + Arch/aarch64/dummy.cpp # Preload specific Arch/aarch64/init.cpp |