mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
build-system: switch submodule protocol
As of today, GitHub no longer allows the 'git://' protocol, so we need to switch the submodule and our other references to cloning git repos to 'https://' instead. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
af88d34227
commit
c94e2b5d3f
11 changed files with 14 additions and 14 deletions
|
|
@ -9,7 +9,7 @@ if [[ $(pwd | grep "subsurface$") || ! -d subsurface || ! -d subsurface/libdivec
|
|||
exit 1;
|
||||
fi
|
||||
if [[ ! -d googlemaps ]] ; then
|
||||
echo "Please make sure you have the current master of git://github.com/Subsurface/googlemaps"
|
||||
echo "Please make sure you have the current master of https://github.com/Subsurface/googlemaps"
|
||||
echo "checked out in parallel to the Subsurface directory"
|
||||
exit 1;
|
||||
fi
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ The easiest way to build things is using our container:
|
|||
|
||||
mkdir $HOME/src
|
||||
cd $HOME/src
|
||||
git clone git://github.com/subsurface/subsurface
|
||||
git clone https://github.com/subsurface/subsurface
|
||||
cd subsurface
|
||||
git checkout version or branch you are testing
|
||||
cd ..
|
||||
|
|
@ -49,7 +49,7 @@ cd /android
|
|||
wget https://dl.google.com/android/repository/commandlinetools-linux-6858069_latest.zip
|
||||
unzip commandlinetools-linux-*.zip
|
||||
|
||||
git clone git://github.com/subsurface/subsurface
|
||||
git clone https://github.com/subsurface/subsurface
|
||||
|
||||
# now get the SDK, NDK, Qt, everything that's needed
|
||||
bash /android/subsurface/packaging/android/android-build-setup.sh
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@ trac system.
|
|||
* sudo dpkg-reconfigure tzdata
|
||||
* mkdir src
|
||||
* cd src
|
||||
* git clone git://subsurface-divelog.org/subsurface.git
|
||||
* git clone https://subsurface-divelog.org/subsurface.git
|
||||
* sudo apt-get install git g++ make autoconf automake libtool cmake pkg-config \
|
||||
libxml2-dev libxslt1-dev libzip-dev libsqlite3-dev \
|
||||
libusb-1.0-0-dev libgit2-dev \
|
||||
|
|
|
|||
|
|
@ -12,13 +12,13 @@ if [[ $(pwd | grep "subsurface$") || ! -d subsurface || ! -d subsurface/libdivec
|
|||
exit 1;
|
||||
fi
|
||||
if [[ ! -d googlemaps ]] ; then
|
||||
echo "Please make sure you have the current master of git://github.com/Subsurface/googlemaps"
|
||||
echo "Please make sure you have the current master of https://github.com/Subsurface/googlemaps"
|
||||
echo "checked out in parallel to the Subsurface directory"
|
||||
exit 1;
|
||||
fi
|
||||
|
||||
if [[ ! -d libgit2 ]] ; then
|
||||
echo "Please make sure you have libgit2 1.0 from git://github.com/libgit2/libgit2"
|
||||
echo "Please make sure you have libgit2 1.0 from https://github.com/libgit2/libgit2"
|
||||
echo "checked out in parallel to the Subsurface directory"
|
||||
exit 1;
|
||||
fi
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ All it takes is this:
|
|||
|
||||
```
|
||||
cd /some/path/windows
|
||||
git clone git://github.com/subsurface/subsurface
|
||||
git clone https://github.com/subsurface/subsurface
|
||||
cd subsurface
|
||||
git submodule init
|
||||
git submodule update
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue