mirror of
https://github.com/curl/curl.git
synced 2026-07-24 10:37:16 +03:00
- reduce log noise by showing 'Uninstalling' message only if the file exists. (and a different message otherwise) - replace cmake `rm` command with `file(REMOVE)`. For efficiency. Show manual message if the file could not be deleted. Ref: https://cmake.org/cmake/help/v3.18/command/file.html#remove Follow-up to6d008352c6#22193 - reduce log noise by showing 'Uninstalled' only if the deletion was successful. (and a different message otherwise) - display `DESTDIR` env value if set. - drop checking, setting and showing `CMAKE_INSTALL_PREFIX`. The value was never predefined, also not used, besides showing it, and showing it is misleading because `--prefix` may override the configure-time value, and also superfluous because the filenames are showing the actual prefix anyway. Follow-up to27e2a4733cCloses #22201
48 lines
1.8 KiB
CMake
48 lines
1.8 KiB
CMake
#***************************************************************************
|
|
# _ _ ____ _
|
|
# Project ___| | | | _ \| |
|
|
# / __| | | | |_) | |
|
|
# | (__| |_| | _ <| |___
|
|
# \___|\___/|_| \_\_____|
|
|
#
|
|
# Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
|
|
#
|
|
# This software is licensed as described in the file COPYING, which
|
|
# you should have received as part of this distribution. The terms
|
|
# are also available at https://curl.se/docs/copyright.html.
|
|
#
|
|
# You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
# copies of the Software, and permit persons to whom the Software is
|
|
# furnished to do so, under the terms of the COPYING file.
|
|
#
|
|
# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
# KIND, either express or implied.
|
|
#
|
|
# SPDX-License-Identifier: curl
|
|
#
|
|
###########################################################################
|
|
set(_manifest "@PROJECT_BINARY_DIR@/install_manifest.txt")
|
|
if(NOT EXISTS "${_manifest}")
|
|
message(FATAL_ERROR "Cannot find install manifest: ${_manifest}")
|
|
endif()
|
|
|
|
set(_destdir "$ENV{DESTDIR}")
|
|
if(NOT _destdir STREQUAL "")
|
|
message(STATUS "DESTDIR environment: ${_destdir}")
|
|
endif()
|
|
|
|
file(READ "${_manifest}" _files)
|
|
string(REGEX REPLACE "\n" ";" _files "${_files}")
|
|
foreach(_file IN LISTS _files)
|
|
set(_target "${_destdir}${_file}")
|
|
if(IS_SYMLINK "${_target}" OR EXISTS "${_target}")
|
|
file(REMOVE "${_target}")
|
|
if(IS_SYMLINK "${_target}" OR EXISTS "${_target}")
|
|
message(STATUS "Failed to delete: ${_target}")
|
|
else()
|
|
message(STATUS "Uninstalled: ${_target}")
|
|
endif()
|
|
else()
|
|
message(STATUS "File does not exist: ${_target}")
|
|
endif()
|
|
endforeach()
|