We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 75d910c + f233bfb commit fbd9b25Copy full SHA for fbd9b25
cmake/include/uninstall.cmake.in
@@ -7,10 +7,10 @@ string(REGEX REPLACE "\n" ";" files "${files}")
7
foreach(file ${files})
8
message(STATUS "Uninstalling $ENV{DESTDIR}${file}")
9
if(IS_SYMLINK "$ENV{DESTDIR}${file}" OR EXISTS "$ENV{DESTDIR}${file}")
10
- exec_program(
11
- "@CMAKE_COMMAND@" ARGS "-E remove \"$ENV{DESTDIR}${file}\""
+ execute_process(
+ COMMAND "@CMAKE_COMMAND@" -E remove "$ENV{DESTDIR}${file}"
12
OUTPUT_VARIABLE rm_out
13
- RETURN_VALUE rm_retval
+ RESULT_VARIABLE rm_retval
14
)
15
if(NOT "${rm_retval}" STREQUAL 0)
16
message(FATAL_ERROR "Problem when removing $ENV{DESTDIR}${file}")
0 commit comments