]> git.ipfire.org Git - thirdparty/git.git/commitdiff
meson: fix sorting
authorJohannes Schindelin <johannes.schindelin@gmx.de>
Thu, 6 Mar 2025 10:26:19 +0000 (10:26 +0000)
committerJunio C Hamano <gitster@pobox.com>
Thu, 6 Mar 2025 16:35:07 +0000 (08:35 -0800)
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 <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
meson.build

index e86085b0a474a1185c1757d5184678051d0eee55..efe2871c9dba1318297f92ff8b412ce485c84500 100644 (file)
@@ -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',
   ]