Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan McGovern <alan.mcgovern@gmail.com>2015-07-10 01:29:42 +0300
committerAlan McGovern <alan.mcgovern@gmail.com>2015-07-10 01:29:42 +0300
commit7522a46344738a0ba40b0af9a77ca7e6fcc3cfcf (patch)
treefac808f877948b75904a60e0bb049af9a052cb69 /Makefile
parent5c16b401e40fd1c9235d47ace9ab99bd97ad91c3 (diff)
parentc85c0b43cd50e58ff24025444e46ed9b301b8860 (diff)
Merge pull request #975 from mono/gss
[Build] Add `git submodule sync` as a pre-build command.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 1f190b35c5..1b04f74ad4 100644
--- a/Makefile
+++ b/Makefile
@@ -10,6 +10,7 @@ all: update_submodules all-recursive
update_submodules:
if test -d ".git"; then \
+ git submodule sync \
git submodule update --init --recursive || exit 1; \
fi