Browse Source

Merge pull request #864 from scottj97/git-submodule-fix

Use `git rev-parse` to find .git dir
pull/868/head 2021.03.17
Kito Cheng 5 years ago
committed by GitHub
parent
commit
88b004d4c2
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      Makefile.in

4
Makefile.in

@ -245,8 +245,8 @@ endif
$(srcdir)/%/.git:
cd $(srcdir) && \
flock $(srcdir)/.git/config git submodule init $(dir $@) && \
flock $(srcdir)/.git/config git submodule update $(dir $@)
flock `git rev-parse --git-dir`/config git submodule init $(dir $@) && \
flock `git rev-parse --git-dir`/config git submodule update $(dir $@)
#
# GLIBC

Loading…
Cancel
Save