Skip to content

Commit f233bfb

Browse files
authored
Update deprecated CMake command exec_program() (#526)
Per the cmake documentation: > *Changed in version 3.28:* This command is available only if policy CMP0153 > is not set to NEW. Port projects to the execute_process() command. > > *Deprecated since version 3.0:* Use the execute_process() command instead. To avoid warnings or future errors, calls to `exec_program()` have been replaced with the recommended `execute_process()` command.
1 parent e41a7f2 commit f233bfb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

cmake/include/uninstall.cmake.in

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ string(REGEX REPLACE "\n" ";" files "${files}")
77
foreach(file ${files})
88
message(STATUS "Uninstalling $ENV{DESTDIR}${file}")
99
if(IS_SYMLINK "$ENV{DESTDIR}${file}" OR EXISTS "$ENV{DESTDIR}${file}")
10-
exec_program(
11-
"@CMAKE_COMMAND@" ARGS "-E remove \"$ENV{DESTDIR}${file}\""
10+
execute_process(
11+
COMMAND "@CMAKE_COMMAND@" -E remove "$ENV{DESTDIR}${file}"
1212
OUTPUT_VARIABLE rm_out
13-
RETURN_VALUE rm_retval
13+
RESULT_VARIABLE rm_retval
1414
)
1515
if(NOT "${rm_retval}" STREQUAL 0)
1616
message(FATAL_ERROR "Problem when removing $ENV{DESTDIR}${file}")

0 commit comments

Comments
 (0)