Skip to content

Commit 456607b

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 e2327a4 commit 456607b

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
@@ -1108,11 +1108,11 @@ elif host_machine.system() == 'windows'
11081108
libgit_sources += [
11091109
'compat/mingw.c',
11101110
'compat/winansi.c',
1111+
'compat/win32/dirent.c',
11111112
'compat/win32/flush.c',
11121113
'compat/win32/path-utils.c',
11131114
'compat/win32/pthread.c',
11141115
'compat/win32/syslog.c',
1115-
'compat/win32/dirent.c',
11161116
'compat/win32mmap.c',
11171117
'compat/nedmalloc/nedmalloc.c',
11181118
]

0 commit comments

Comments
 (0)