Skip to content

Commit 75e415e

Browse files
committed
Makefile: Do not install built-ins
MSYS does not support file system links and we do not want to have copies that bloat the installation. Signed-off-by: Sebastian Schuberth <[email protected]>
1 parent 8102961 commit 75e415e

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

Makefile

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2380,13 +2380,6 @@ endif
23802380
ln -s "git$X" "$$bindir/$$p" 2>/dev/null || \
23812381
cp "$$bindir/git$X" "$$bindir/$$p" || exit; \
23822382
done && \
2383-
for p in $(BUILT_INS); do \
2384-
$(RM) "$$execdir/$$p" && \
2385-
test -z "$(NO_INSTALL_HARDLINKS)" && \
2386-
ln "$$execdir/git$X" "$$execdir/$$p" 2>/dev/null || \
2387-
ln -s "git$X" "$$execdir/$$p" 2>/dev/null || \
2388-
cp "$$execdir/git$X" "$$execdir/$$p" || exit; \
2389-
done && \
23902383
remote_curl_aliases="$(REMOTE_CURL_ALIASES)" && \
23912384
for p in $$remote_curl_aliases; do \
23922385
$(RM) "$$execdir/$$p" && \

0 commit comments

Comments
 (0)