diff options
| author | Robert Schumacher <roschuma@microsoft.com> | 2017-02-08 17:39:31 -0800 |
|---|---|---|
| committer | Robert Schumacher <roschuma@microsoft.com> | 2017-02-08 17:39:31 -0800 |
| commit | 116b1b8c66afbe11719c42d03d342bb6fe5d58b0 (patch) | |
| tree | 54e2a615689a57732c78f79da12c75f52d9ae3c3 /ports/qca | |
| parent | 52ebf3944d1a0aa276472f50e47de9fa61429a7c (diff) | |
| download | vcpkg-116b1b8c66afbe11719c42d03d342bb6fe5d58b0.tar.gz vcpkg-116b1b8c66afbe11719c42d03d342bb6fe5d58b0.zip | |
Reorder path alterations to generally append instead of prepend.
This solves the issue where some software bundles (git) provide multiple executables in the same folder, which can override other desired programs (link.exe).
Diffstat (limited to 'ports/qca')
| -rw-r--r-- | ports/qca/portfile.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/qca/portfile.cmake b/ports/qca/portfile.cmake index 072c4b7cb..6ad35d1f7 100644 --- a/ports/qca/portfile.cmake +++ b/ports/qca/portfile.cmake @@ -15,7 +15,7 @@ include(vcpkg_common_functions) find_program(GIT git) vcpkg_find_acquire_program(PERL) get_filename_component(PERL_EXE_PATH ${PERL} DIRECTORY) -set(ENV{PATH} "${PERL_EXE_PATH};$ENV{PATH}") +set(ENV{PATH} "$ENV{PATH};${PERL_EXE_PATH}") # Set git variables to qca version 2.2.0 commit set(GIT_URL "git://anongit.kde.org/qca.git") |
