mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-06-23 22:04:26 -04:00
Remove problematic git submodule option
--recommend-shallow seems to nos be effective, and even causing problems with older git versions
This commit is contained in:
parent
f1e2cb047e
commit
64c4982f41
1 changed files with 5 additions and 5 deletions
|
@ -846,11 +846,11 @@ rs_jsonapi {
|
||||||
genrestbedlib.variable_out = PRE_TARGETDEPS
|
genrestbedlib.variable_out = PRE_TARGETDEPS
|
||||||
genrestbedlib.commands = \
|
genrestbedlib.commands = \
|
||||||
cd $${RS_SRC_PATH} && ( \
|
cd $${RS_SRC_PATH} && ( \
|
||||||
git submodule update --init --recommend-shallow supportlibs/restbed ; \
|
git submodule update --init supportlibs/restbed ; \
|
||||||
cd $${RESTBED_SRC_PATH} ; \
|
cd $${RESTBED_SRC_PATH} ; \
|
||||||
git submodule update --init --recommend-shallow dependency/asio ; \
|
git submodule update --init dependency/asio ; \
|
||||||
git submodule update --init --recommend-shallow dependency/catch ; \
|
git submodule update --init dependency/catch ; \
|
||||||
git submodule update --init --recommend-shallow dependency/kashmir ; \
|
git submodule update --init dependency/kashmir ; \
|
||||||
true ) && \
|
true ) && \
|
||||||
mkdir -p $${RESTBED_BUILD_PATH} && cd $${RESTBED_BUILD_PATH} && \
|
mkdir -p $${RESTBED_BUILD_PATH} && cd $${RESTBED_BUILD_PATH} && \
|
||||||
cmake \
|
cmake \
|
||||||
|
@ -919,7 +919,7 @@ rs_broadcast_discovery {
|
||||||
udpdiscoverycpplib.variable_out = PRE_TARGETDEPS
|
udpdiscoverycpplib.variable_out = PRE_TARGETDEPS
|
||||||
udpdiscoverycpplib.commands = \
|
udpdiscoverycpplib.commands = \
|
||||||
cd $${RS_SRC_PATH} && ( \
|
cd $${RS_SRC_PATH} && ( \
|
||||||
git submodule update --init --recommend-shallow supportlibs/udp-discovery-cpp || \
|
git submodule update --init supportlibs/udp-discovery-cpp || \
|
||||||
true ) && \
|
true ) && \
|
||||||
mkdir -p $${UDP_DISCOVERY_BUILD_PATH} && \
|
mkdir -p $${UDP_DISCOVERY_BUILD_PATH} && \
|
||||||
cd $${UDP_DISCOVERY_BUILD_PATH} && \
|
cd $${UDP_DISCOVERY_BUILD_PATH} && \
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue