diff mbox series

[2/2] meson: fix sorting

Message ID 9d1faeae8a47326fbaef9a7a670920899ab0aa81.1740671049.git.gitgitgadget@gmail.com (mailing list archive)
State New
Headers show
Series Hot fixes from Git for Windows v2.49.0-rc0 | expand

Commit Message

Johannes Schindelin Feb. 27, 2025, 3:44 p.m. UTC
From: Johannes Schindelin <johannes.schindelin@gmx.de>

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>
---
 meson.build | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Patrick Steinhardt Feb. 28, 2025, 7:58 a.m. UTC | #1
On Thu, Feb 27, 2025 at 03:44:09PM +0000, Johannes Schindelin via GitGitGadget wrote:
> From: Johannes Schindelin <johannes.schindelin@gmx.de>
> 
> 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.

This looks obviously good to me, thanks!

Patrick
diff mbox series

Patch

diff --git a/meson.build b/meson.build
index bf95576f839..16e451365e9 100644
--- a/meson.build
+++ b/meson.build
@@ -1092,11 +1092,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',
   ]