diff options
author | Davide Pesavento <pesa@gentoo.org> | 2017-10-08 11:58:41 +1100 |
---|---|---|
committer | Michael Palimaka <kensington@gentoo.org> | 2017-10-08 12:46:25 +1100 |
commit | 98fadd3b4f7fe5ed1b7f3ee276f229d7d9cf2f93 (patch) | |
tree | d68844af7330c17c744835b0a4f10894f2330804 | |
parent | qt5-build.eclass: adapt to changes in Qt 5.9 git (diff) | |
download | gentoo-98fadd3b4f7fe5ed1b7f3ee276f229d7d9cf2f93.tar.gz gentoo-98fadd3b4f7fe5ed1b7f3ee276f229d7d9cf2f93.tar.bz2 gentoo-98fadd3b4f7fe5ed1b7f3ee276f229d7d9cf2f93.zip |
qt5-build.eclass: drop insecure git:// URL from EGIT_REPO_URI
-rw-r--r-- | eclass/qt5-build.eclass | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass index 5307d27a2932..fca63af4b889 100644 --- a/eclass/qt5-build.eclass +++ b/eclass/qt5-build.eclass @@ -92,9 +92,8 @@ esac readonly QT5_BUILD_TYPE EGIT_REPO_URI=( - "git://code.qt.io/qt/${QT5_MODULE}.git" - "https://code.qt.io/git/qt/${QT5_MODULE}.git" - "https://github.com/qtproject/${QT5_MODULE}.git" + "https://code.qt.io/qt/${QT5_MODULE}.git" + "https://github.com/qt/${QT5_MODULE}.git" ) [[ ${QT5_BUILD_TYPE} == live ]] && inherit git-r3 |