diff options
| author | Kristof <kristof@daja.hu> | 2020-01-17 00:11:27 +0100 |
|---|---|---|
| committer | Victor Romero <romerosanchezv@gmail.com> | 2020-01-16 15:11:27 -0800 |
| commit | 24a97b16e70400b874299f9d58f571f215090444 (patch) | |
| tree | 0fdfa27e46c9ef1898cb879fd562beb986b7cb92 | |
| parent | c50852aba0aa8df22e17133352edb432a9fc1e56 (diff) | |
| download | vcpkg-24a97b16e70400b874299f9d58f571f215090444.tar.gz vcpkg-24a97b16e70400b874299f9d58f571f215090444.zip | |
[toolsrc] Added missing @ to FATAL_ERROR message (#9720)
To install a specific version of a package via homebrew, an `@` symbol must be placed in-between the package name and its version.
Added missing symbol to `toolsrc/CMakeLists.txt`
See homebrew console output for reference:
```
Kristofs-Mac-Pro:vcpkg kristofdaja$ brew search gcc
==> Formulae
gcc gcc@5 gcc@7 x86_64-elf-gcc
gcc@4.9 gcc@6 gcc@8
```
| -rw-r--r-- | toolsrc/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolsrc/CMakeLists.txt b/toolsrc/CMakeLists.txt index 9106204b2..af6981155 100644 --- a/toolsrc/CMakeLists.txt +++ b/toolsrc/CMakeLists.txt @@ -31,7 +31,7 @@ elseif(CMAKE_CXX_COMPILER_ID MATCHES "AppleClang") message(FATAL_ERROR
"Building the vcpkg tool requires support for the C++ Filesystem TS.
Apple clang versions 10.01 and below do not have support for it.
-Please install gcc6 or newer from homebrew (brew install gcc6).
+Please install gcc6 or newer from homebrew (brew install gcc@6).
If you would like to try anyway, pass --allowAppleClang to bootstrap.sh.")
else()
set(CLANG 1)
|
