From: DaanDeMeyer Date: Sun, 13 Jul 2025 10:41:57 +0000 (+0200) Subject: boot: Use hypen in efi-config.h instead of underscore X-Git-Tag: v258-rc1~68^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d962bfeb0354cd5dacc92aaac50ec6d7bed2917b;p=thirdparty%2Fsystemd.git boot: Use hypen in efi-config.h instead of underscore --- diff --git a/src/boot/meson.build b/src/boot/meson.build index 4064bbe3b78..68f1432d1dc 100644 --- a/src/boot/meson.build +++ b/src/boot/meson.build @@ -147,7 +147,7 @@ if efi_conf.get('SBAT_DISTRO', '') != '' endif configure_file( - output : 'efi_config.h', + output : 'efi-config.h', configuration : efi_conf) ############################################################ @@ -163,7 +163,7 @@ efi_c_args = [ '-ffreestanding', '-fno-strict-aliasing', '-fshort-wchar', - '-include', 'efi_config.h', + '-include', 'efi-config.h', ] efi_c_args += cc.get_supported_arguments( diff --git a/src/test/test-sbat.c b/src/test/test-sbat.c index 47b31ba5d31..a085953c282 100644 --- a/src/test/test-sbat.c +++ b/src/test/test-sbat.c @@ -1,8 +1,8 @@ /* SPDX-License-Identifier: LGPL-2.1-or-later */ -/* We include efi_config.h after undefining PROJECT_VERSION which is also defined in config.h. */ +/* We include efi-config.h after undefining PROJECT_VERSION which is also defined in config.h. */ #undef PROJECT_VERSION -#include "efi_config.h" +#include "efi-config.h" #include "sbat.h" #include "tests.h"