Skip to content

Commit 9d1faea

Browse files
committed
meson: fix sorting
In 904339e (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>
1 parent 045c11d commit 9d1faea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1092,11 +1092,11 @@ elif host_machine.system() == 'windows'
10921092
libgit_sources += [
10931093
'compat/mingw.c',
10941094
'compat/winansi.c',
1095+
'compat/win32/dirent.c',
10951096
'compat/win32/flush.c',
10961097
'compat/win32/path-utils.c',
10971098
'compat/win32/pthread.c',
10981099
'compat/win32/syslog.c',
1099-
'compat/win32/dirent.c',
11001100
'compat/win32mmap.c',
11011101
'compat/nedmalloc/nedmalloc.c',
11021102
]

0 commit comments

Comments
 (0)