SHA256
1
0
forked from pool/git
git/git-nohardlink.diff
Sascha Peilicke 01f4542b84 Accepting request 74766 from devel:tools:scm
- update to 1.7.6: major update from 1.7.5.x
 * Similar to branch names, tagnames that begin with "-" are now
   disallowed.
 * Simpler handling of a large file depending on core.bigfilethreshold
   value
 * A magic pathspec ":/" handling
 * Some new options and improvements in git-blame, git-commit, git-diff
   git-grep, git-format-patch, git-merge, git-svn, etc
 * More prepartaion for i18n/l10n.
 See Documentation/RelNotes/1.7.6.txt for details.

- updated to git 1.7.6: see git changelog for more details

OBS-URL: https://build.opensuse.org/request/show/74766
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/git?expand=0&rev=64
2011-06-28 13:12:53 +00:00

17 lines
467 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
@@ -2252,7 +2252,6 @@
done && \
for p in $(BUILT_INS); do \
$(RM) "$$execdir/$$p" && \
- ln "$$execdir/git$X" "$$execdir/$$p" 2>/dev/null || \
ln -s "git$X" "$$execdir/$$p" 2>/dev/null || \
cp "$$execdir/git$X" "$$execdir/$$p" || exit; \
done && \