diff options
author | Jan Mulder <jlmulder@xs4all.nl> | 2017-04-12 19:40:19 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2017-04-12 17:50:44 -0700 |
commit | fd40a29ec858a24936acd84899dbc3860d91556e (patch) | |
tree | f302c1f87209c4c839ddb0fe2ee10194fe5154ff /scripts/build.sh | |
parent | 441260b8bcff52e9b4d04cf1bf7a62bd467124db (diff) | |
download | subsurface-fd40a29ec858a24936acd84899dbc3860d91556e.tar.gz |
Use libdc from github now
The build script was cloning the Sursurface branch of libdivecomputer from the "old"
location. Use the new github based location from now on.
Signed-off-by: Jan Mulder <jlmulder@xs4all.nl>
Diffstat (limited to 'scripts/build.sh')
-rwxr-xr-x | scripts/build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build.sh b/scripts/build.sh index f60d7045b..fd62d2c1f 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -129,7 +129,7 @@ if [ ! -d libdivecomputer ] ; then if [[ $1 = local ]] ; then git clone $SRC/../libdivecomputer libdivecomputer else - 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 fi cd libdivecomputer |