Skip to content

Commit

Permalink
various - use https
Browse files Browse the repository at this point in the history
  • Loading branch information
winterz committed Sep 18, 2020
1 parent e599d37 commit 7e2e213
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cmake/FindWayland.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,6 @@ find_package_handle_standard_args(Wayland

include(FeatureSummary)
set_package_properties(Wayland PROPERTIES
URL "http://wayland.freedesktop.org"
URL "https://wayland.freedesktop.org"
DESCRIPTION "C library implementation of the Wayland protocol: a protocol for a compositor to talk to its clients"
)
2 changes: 1 addition & 1 deletion docs/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ find_package(Doxygen)
set_package_properties(Doxygen PROPERTIES
TYPE OPTIONAL
DESCRIPTION "API Documentation system"
URL "http://www.doxygen.org"
URL "https://www.doxygen.org"
PURPOSE "Needed to build the API documentation."
)
if(DOXYGEN_DOT_EXECUTABLE)
Expand Down
2 changes: 1 addition & 1 deletion launcher/core/libraryutil.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ static QVector<QByteArray> dependenciesInternal(const QString &fileName, bool fa
if (!proc.waitForStarted()) // if that is not available, run the fallback
return dependenciesInternal(fileName, true);
} else {
// see http://man7.org/linux/man-pages/man8/ld.so.8.html
// see https://man7.org/linux/man-pages/man8/ld.so.8.html
// by setting LD_TRACE_LOADED_OBJECTS=1 we make ld.so behave like ldd
// this works even on embedded systems where ldd is not available
QProcessEnvironment env = proc.processEnvironment();
Expand Down

0 comments on commit 7e2e213

Please sign in to comment.