diff options
| author | Johannes Schindelin <johannes.schindelin@gmx.de> | 2025-10-09 07:46:00 +0000 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2025-10-09 13:21:27 -0700 |
| commit | b9c6962ad5b2f735d8281eb03646cefcf01886de (patch) | |
| tree | 67a6da4b58b46e5db5b9c13fd17c2fb8e95237a3 /compat | |
| parent | c44beea485f0f2feaf460e2ac87fdd5608d63cf0 (diff) | |
mingw: avoid relative `#include`s
We want to make them relative to the top-level directory.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'compat')
| -rw-r--r-- | compat/mingw.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/compat/mingw.c b/compat/mingw.c index 8538e3d172..da99473f56 100644 --- a/compat/mingw.c +++ b/compat/mingw.c @@ -1,22 +1,22 @@ #define USE_THE_REPOSITORY_VARIABLE #define DISABLE_SIGN_COMPARE_WARNINGS -#include "../git-compat-util.h" +#include "git-compat-util.h" #include "win32.h" #include <aclapi.h> #include <sddl.h> #include <conio.h> #include <wchar.h> -#include "../strbuf.h" -#include "../run-command.h" -#include "../abspath.h" -#include "../alloc.h" +#include "strbuf.h" +#include "run-command.h" +#include "abspath.h" +#include "alloc.h" #include "win32/lazyload.h" -#include "../config.h" -#include "../environment.h" -#include "../trace2.h" -#include "../symlinks.h" -#include "../wrapper.h" +#include "config.h" +#include "environment.h" +#include "trace2.h" +#include "symlinks.h" +#include "wrapper.h" #include "dir.h" #include "gettext.h" #define SECURITY_WIN32 |
