Skip to content

Commit fbd9b25

Browse files
committed
Merge branch 'dev' of http://github.com/wb2osz/direwolf into dev
2 parents 75d910c + f233bfb commit fbd9b25

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)