Skip to content

Commit 0b9c0a8

Browse files
committed
fixup! mingw: Use the Git wrapper for builtins
This bug was found when testing the Vagrant setup.
1 parent 49b9363 commit 0b9c0a8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2259,9 +2259,9 @@ LN_OR_CP_BUILT_IN_BINDIR = \
22592259
cp "$$bindir/git$X" "$$bindir/$$p" || exit;
22602260
LN_OR_CP_BUILT_IN_EXECDIR = \
22612261
test -z "$(NO_INSTALL_HARDLINKS)" && \
2262-
ln "$$exectir/git$X" "$$exectir/$$p" 2>/dev/null || \
2263-
ln -s "git$X" "$$exectir/$$p" 2>/dev/null || \
2264-
cp "$$exectir/git$X" "$$exectir/$$p" || exit;
2262+
ln "$$execdir/git$X" "$$execdir/$$p" 2>/dev/null || \
2263+
ln -s "git$X" "$$execdir/$$p" 2>/dev/null || \
2264+
cp "$$execdir/git$X" "$$execdir/$$p" || exit;
22652265
else
22662266
LN_OR_CP_BUILT_IN_BINDIR = \
22672267
cp "$(BUILT_IN_WRAPPER)" "$$bindir/$$p" || exit;

0 commit comments

Comments
 (0)