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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
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
|
|
|
|
|