17 lines
550 B
Diff
17 lines
550 B
Diff
don't use hardlinks as our .spec calls fdupes which converts the
|
|
hardlinks to symlinks again in an unpredicatable way
|
|
---
|
|
Makefile | 1 -
|
|
1 file changed, 1 deletion(-)
|
|
|
|
--- a/Makefile
|
|
+++ b/Makefile
|
|
@@ -1472,7 +1472,6 @@
|
|
cp "$$bindir/git$X" "$$execdir/git-add$X"; } && \
|
|
{ for p in $(filter-out git-add$X,$(BUILT_INS)); do \
|
|
$(RM) "$$execdir/$$p" && \
|
|
- ln "$$execdir/git-add$X" "$$execdir/$$p" 2>/dev/null || \
|
|
ln -s "git-add$X" "$$execdir/$$p" 2>/dev/null || \
|
|
cp "$$execdir/git-add$X" "$$execdir/$$p" || exit; \
|
|
done } && \
|