diff --git a/README.md b/README.md index f270d5147..dd601377f 100644 --- a/README.md +++ b/README.md @@ -138,7 +138,7 @@ published by Packt and authored by [Radovan Bast](https://github.com/bast) and - [1. Installing your project](chapter-10/recipe-01/README.md) - [2. Generating export headers](chapter-10/recipe-02/README.md) - [3. Exporting your targets](chapter-10/recipe-03/README.md) -- [4. Installing a superbuild project](chapter-10/recipe-04/README.md) +- [4. Installing a superbuild](chapter-10/recipe-04/README.md) ### [Chapter 11: Packaging Projects](chapter-11/README.md) diff --git a/chapter-10/README.md b/chapter-10/README.md index d257413ba..b15da7dc7 100644 --- a/chapter-10/README.md +++ b/chapter-10/README.md @@ -3,4 +3,4 @@ - [1. Installing your project](recipe-01/README.md) - [2. Generating export headers](recipe-02/README.md) - [3. Exporting your targets](recipe-03/README.md) -- [4. Installing a superbuild project](recipe-04/README.md) +- [4. Installing a superbuild](recipe-04/README.md) diff --git a/chapter-10/recipe-04/README.md b/chapter-10/recipe-04/README.md index 25ef2f3fb..ffbd8ad0e 100644 --- a/chapter-10/recipe-04/README.md +++ b/chapter-10/recipe-04/README.md @@ -1,4 +1,4 @@ -# Installing a superbuild project +# Installing a superbuild This recipe shows how to install a superbuild which depends on a library which may or may not be available on the system. diff --git a/chapter-10/recipe-04/title.txt b/chapter-10/recipe-04/title.txt index 08aa0e0a6..e48a7e711 100644 --- a/chapter-10/recipe-04/title.txt +++ b/chapter-10/recipe-04/title.txt @@ -1 +1 @@ -Installing a superbuild project +Installing a superbuild diff --git a/testing/dependencies/appveyor/anaconda.ps1 b/testing/dependencies/appveyor/anaconda.ps1 index 2585e69dd..bae08e655 100644 --- a/testing/dependencies/appveyor/anaconda.ps1 +++ b/testing/dependencies/appveyor/anaconda.ps1 @@ -83,7 +83,7 @@ function SetUpConda ($Anaconda_cache) { Write-Host $conda_path $args Start-Process -FilePath "$conda_path" -ArgumentList $args -Wait -Passthru - $args = "install --yes --quiet conda-build anaconda-client jinja2 setuptools" + $args = "install --yes --quiet conda-build anaconda-client conda-verify jinja2 setuptools" Write-Host $conda_path $args Start-Process -FilePath "$conda_path" -ArgumentList $args -Wait -Passthru diff --git a/testing/dependencies/travis/anaconda.sh b/testing/dependencies/travis/anaconda.sh index d83133210..3ffccb1bd 100755 --- a/testing/dependencies/travis/anaconda.sh +++ b/testing/dependencies/travis/anaconda.sh @@ -25,7 +25,7 @@ else conda update --all --yes &> /dev/null conda clean -tipy &> /dev/null # Install conda build and deployment tools. - conda install --yes --quiet conda-build anaconda-client jinja2 setuptools &> /dev/null + conda install --yes --quiet conda-build anaconda-client conda-verify jinja2 setuptools &> /dev/null conda clean -tipsy &> /dev/null conda info -a cd "$TRAVIS_BUILD_DIR"