]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
submodules: --recursive needed for gtest in gmock
authorDanny Al-Gaaf <danny.al-gaaf@bisect.de>
Mon, 2 Mar 2015 15:54:40 +0000 (16:54 +0100)
committerDanny Al-Gaaf <danny.al-gaaf@bisect.de>
Mon, 2 Mar 2015 20:10:24 +0000 (21:10 +0100)
Signed-off-by: Danny Al-Gaaf <danny.al-gaaf@bisect.de>
autogen.sh
doc/dev/corpus.rst
doc/dev/release-process.rst
doc/install/clone-source.rst
src/test/docker-test-helper.sh

index 650993dcf18f15e3a7356c86f4cf8a6a2bf3402e..1e06e26877062ddf29b97b07329463dbbc79c174 100755 (executable)
@@ -29,7 +29,7 @@ else
 fi
 
 if test -d ".git" ; then
-  if ! git submodule sync || ! git submodule update --init; then
+  if ! git submodule sync || ! git submodule update --init --recursive; then
     echo "Error: could not initialize submodule projects"
     echo "  Network connectivity might be required."
     exit 1
index 70d00fb5ec1914e723addfbf8137e15a652c2b3a..fe8d1e1d6ba2dccffc4817232639108bf94569ca 100644 (file)
@@ -24,7 +24,7 @@ We can generate an object corpus for a particular version of ceph like so.
 
        git clone ceph.git
        cd ceph
-       git submodule update --init
+       git submodule update --init --recursive
 
 #. Build with flag to dump objects to /tmp/foo::
 
index 0471415fc142a0be5f50c8d5381f474802068a85..f039fd875f47df1c157f2907780bcd4663108d7c 100644 (file)
@@ -43,7 +43,7 @@ In the ceph source directory, checkout next branch (for point releases use the {
 
 Checkout the submodules::
 
-    git submodule update --init
+    git submodule update --init --recursive
 
 4.  Update Build version numbers
 ================================
index e4af3e41c411e1fdc9b26fffb7799749db3ed01a..c7272f2523172c6440dbabc2c6f9ed4d9160f815 100644 (file)
@@ -83,7 +83,7 @@ repository.
 
 If your submodules are out of date, run::
 
-       git submodule update
+       git submodule update --init --recursive
 
 Choose a Branch
 ===============
index c2b3cdb507d26a7381bbf831c25ea5b01306eeef..048b8b405c04c3e1465f3db66e78344d206c27a6 100755 (executable)
@@ -96,7 +96,7 @@ function setup_downstream() {
         cd $downstream
         git reset --hard $ref || return 1
         git submodule sync || return 1
-        git submodule update --init || return 1
+        git submodule update --init --recursive || return 1
     )
 }