diff options
-rw-r--r-- | INSTALL | 2 | ||||
-rw-r--r-- | packaging/ios/build.sh | 2 | ||||
-rwxr-xr-x | scripts/build.sh | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -129,7 +129,7 @@ like this: mkdir -p ~/src cd ~/src -git clone git://subsurface-divelog.org/subsurface +git clone git://github.com/Subsurface-divelog/subsurface ./subsurface/scripts/build.sh # <- this step will take quite a while as it # compiles a handful of libraries before # building Subsurface diff --git a/packaging/ios/build.sh b/packaging/ios/build.sh index 784e247aa..69c7d3404 100644 --- a/packaging/ios/build.sh +++ b/packaging/ios/build.sh @@ -335,7 +335,7 @@ echo next building for $ARCH # build libdivecomputer if [ ! -d libdivecomputer ] ; then - git clone -b Subsurface-branch git://subsurface-divelog.org/libdc libdivecomputer + git clone -b Subsurface-branch git://github.com/Subsurface-divelog/libdc.git libdivecomputer fi cd libdivecomputer git pull --rebase diff --git a/scripts/build.sh b/scripts/build.sh index 211419be0..3f0e637ca 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -162,7 +162,7 @@ if [ $BUILDMARBLE = 1 ]; then if [[ $1 = local ]] ; then git clone $SRC/../marble-source marble-source else - git clone -b Subsurface-branch git://subsurface-divelog.org/marble marble-source + git clone -b Subsurface-branch git://github.com/Subsurface-divelog/marble.git marble-source fi fi cd marble-source |