Revision 8979a1070097fde3ca0ab45bdd6580b7acd07ca4 authored by Rob Gowin on 15 January 2016, 17:52:00 UTC, committed by Brad King on 15 January 2016, 20:12:34 UTC
The original value is saved in `_pkg_config_path_old`.  Fix this typo
left by commit v3.1.0-rc1~763^2 (FindPkgConfig: Extend PKG_CONFIG_PATH
using CMake variables, 2014-03-06).
1 parent b8d002a
Raw File
BootstrapTest.cmake
file(MAKE_DIRECTORY "${bin_dir}")
message(STATUS "running bootstrap: ${bootstrap}")
execute_process(
  COMMAND ${bootstrap}
  WORKING_DIRECTORY "${bin_dir}"
  RESULT_VARIABLE result
  )
if(result)
  message(FATAL_ERROR "bootstrap failed: ${result}")
endif()
back to top