Skip to content

Commit 1a16c31

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 <[email protected]>
1 parent c2f60cc commit 1a16c31

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
@@ -1109,11 +1109,11 @@ elif host_machine.system() == 'windows'
11091109
libgit_sources += [
11101110
'compat/mingw.c',
11111111
'compat/winansi.c',
1112+
'compat/win32/dirent.c',
11121113
'compat/win32/flush.c',
11131114
'compat/win32/path-utils.c',
11141115
'compat/win32/pthread.c',
11151116
'compat/win32/syslog.c',
1116-
'compat/win32/dirent.c',
11171117
'compat/win32mmap.c',
11181118
'compat/nedmalloc/nedmalloc.c',
11191119
]

0 commit comments

Comments
 (0)