Skip to content

Commit 61b9eb8

Browse files
dschoGit for Windows Build Agent
authored andcommitted
mingw: avoid relative #includes
We want to make them relative to the top-level directory. Signed-off-by: Johannes Schindelin <[email protected]>
1 parent 98ae1e4 commit 61b9eb8

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

compat/mingw.c

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
#define USE_THE_REPOSITORY_VARIABLE
22
#define DISABLE_SIGN_COMPARE_WARNINGS
33

4-
#include "../git-compat-util.h"
4+
#include "git-compat-util.h"
55
#include "win32.h"
66
#include <aclapi.h>
77
#include <sddl.h>
88
#include <conio.h>
99
#include <wchar.h>
10-
#include "../strbuf.h"
11-
#include "../run-command.h"
12-
#include "../abspath.h"
13-
#include "../alloc.h"
10+
#include "strbuf.h"
11+
#include "run-command.h"
12+
#include "abspath.h"
13+
#include "alloc.h"
1414
#include "win32/lazyload.h"
15-
#include "../config.h"
16-
#include "../environment.h"
17-
#include "../trace2.h"
18-
#include "../symlinks.h"
19-
#include "../wrapper.h"
15+
#include "config.h"
16+
#include "environment.h"
17+
#include "trace2.h"
18+
#include "symlinks.h"
19+
#include "wrapper.h"
2020
#include "dir.h"
2121
#include "gettext.h"
2222
#define SECURITY_WIN32

0 commit comments

Comments
 (0)