diff options
| author | Alexander Neumann <alexander.neumann@hamburg.de> | 2019-09-20 12:57:29 +0200 |
|---|---|---|
| committer | Alexander Neumann <alexander.neumann@hamburg.de> | 2019-09-20 12:57:29 +0200 |
| commit | e2be4512a00ba30ab5081bbbf1e535c014f0df37 (patch) | |
| tree | 8795bef85201e2bff5624406e8643fbd7694e6b8 | |
| parent | 119e9b572983019566a27dfe34216f577e09e4d4 (diff) | |
| download | vcpkg-e2be4512a00ba30ab5081bbbf1e535c014f0df37.tar.gz vcpkg-e2be4512a00ba30ab5081bbbf1e535c014f0df37.zip | |
fixed leaking variable in vcpkg_build_qmake
| -rw-r--r-- | scripts/cmake/vcpkg_build_qmake.cmake | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/cmake/vcpkg_build_qmake.cmake b/scripts/cmake/vcpkg_build_qmake.cmake index 03c468463..ef6fb30f3 100644 --- a/scripts/cmake/vcpkg_build_qmake.cmake +++ b/scripts/cmake/vcpkg_build_qmake.cmake @@ -65,6 +65,7 @@ function(vcpkg_build_qmake) run_jom(qmake_all makefiles ${_short_name_${_buildname}}) endif() run_jom("${_csc_${_buildname}_TARGETS}" ${_csc_BUILD_LOGNAME} ${_short_name_${_buildname}}) + unset(_BUILD_PREFIX) endforeach() # Restore the original value of ENV{PATH} |
