From: Johannes Schindelin Date: Thu, 6 Mar 2025 10:26:19 +0000 (+0000) Subject: meson: fix sorting X-Git-Tag: v2.49.0-rc2~2^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=31761f391192909f6486ecb532e72dfaee756be6;p=thirdparty%2Fgit.git meson: fix sorting In 904339edbd80 (Introduce support for the Meson build system, 2024-12-06) the `meson.build` file was introduced, adding also a Windows-specific list of source files. This list was obviously meant to be sorted alphabetically, but there is one mistake. Let's fix that. Signed-off-by: Johannes Schindelin Signed-off-by: Junio C Hamano --- diff --git a/meson.build b/meson.build index e86085b0a4..efe2871c9d 100644 --- a/meson.build +++ b/meson.build @@ -1109,11 +1109,11 @@ elif host_machine.system() == 'windows' libgit_sources += [ 'compat/mingw.c', 'compat/winansi.c', + 'compat/win32/dirent.c', 'compat/win32/flush.c', 'compat/win32/path-utils.c', 'compat/win32/pthread.c', 'compat/win32/syslog.c', - 'compat/win32/dirent.c', 'compat/win32mmap.c', 'compat/nedmalloc/nedmalloc.c', ]