diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2018-08-29 16:43:10 -0700 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2018-08-29 16:43:10 -0700 |
| commit | a6cff2bd57b204a84ddf0c9c50b9367e3e0819bb (patch) | |
| tree | eea4a5c9e6ff9a4cfef6c6472b7b979b29870548 | |
| parent | cfbd6d93d47fe288bdb19fa600047378346be868 (diff) | |
| download | vcpkg-a6cff2bd57b204a84ddf0c9c50b9367e3e0819bb.tar.gz vcpkg-a6cff2bd57b204a84ddf0c9c50b9367e3e0819bb.zip | |
[live555] Improve error message
| -rw-r--r-- | ports/live555/portfile.cmake | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ports/live555/portfile.cmake b/ports/live555/portfile.cmake index 4b173867f..55d15a88c 100644 --- a/ports/live555/portfile.cmake +++ b/ports/live555/portfile.cmake @@ -4,12 +4,12 @@ if(VCPKG_LIBRARY_LINKAGE STREQUAL "dynamic") endif() if(NOT VCPKG_USE_HEAD_VERSION) - message(FATAL_ERROR "Please re-run the installation with --head.") -else() + message(FATAL_ERROR "Live555 does not have persistent releases. Please re-run the installation with --head.") +else() # The current Live555 version from http://www.live555.com/liveMedia/public/ set(LIVE_VERSION latest) - include(vcpkg_common_functions) + include(vcpkg_common_functions) set(SOURCE_PATH ${CURRENT_BUILDTREES_DIR}/src/${LIVE_VERSION}/live) vcpkg_download_distfile(ARCHIVE URLS "http://www.live555.com/liveMedia/public/live555-${LIVE_VERSION}.tar.gz" |
