Add support for gcc as git submodule of another repository.
contrib/ * gcc_update: Check for .git as a file. From-SVN: r259819
This commit is contained in:
parent
77972c795d
commit
254f79336f
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
2018-05-01 Jim Wilson <jimw@sifive.com>
|
||||
|
||||
* gcc_update: Check for .git as a file.
|
||||
|
||||
2018-03-21 Christophe Lyon <christophe.lyon@linaro.org>
|
||||
|
||||
* test_summary: Match possible single quotes in configure path.
|
||||
|
|
|
@ -286,7 +286,7 @@ p
|
|||
esac
|
||||
|
||||
# Check for known version control systems.
|
||||
if [ -d .git ]; then
|
||||
if [ -d .git ] || [ -f .git ]; then
|
||||
GCC_GIT=${GCC_GIT-${GIT-git}}
|
||||
vcs_type="git"
|
||||
elif [ -d .hg ]; then
|
||||
|
|
Loading…
Add table
Reference in a new issue