[geos-commits] [SCM] GEOS branch 3.13 updated. 23207e9582cd4f74826ca04b28e00b168377bc72

git at osgeo.org git at osgeo.org
Wed Oct 30 05:00:23 PDT 2024


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GEOS".

The branch, 3.13 has been updated
       via  23207e9582cd4f74826ca04b28e00b168377bc72 (commit)
       via  874c2e253bd409174ccac648dc38851edfc7f59e (commit)
      from  e696cc471c92515245964b33ef9d8a9bee8e91cf (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 23207e9582cd4f74826ca04b28e00b168377bc72
Author: Sandro Santilli <strk at kbt.io>
Date:   Wed Oct 30 12:19:30 2024 +0100

    Fix removal of include directories by `make uninstall`
    
    Closes GH-1189

diff --git a/cmake/cmake_uninstall.cmake.in b/cmake/cmake_uninstall.cmake.in
index 7eab12b3f..ece9ae0a6 100644
--- a/cmake/cmake_uninstall.cmake.in
+++ b/cmake/cmake_uninstall.cmake.in
@@ -43,7 +43,7 @@ endforeach()
 
 message(STATUS "Deleting ${GEOS_INCLUDE_DIR} directory")
 execute_process(
-  COMMAND "@CMAKE_COMMAND@" -E remove_directory \"${GEOS_INCLUDE_DIR}\"
+  COMMAND "@CMAKE_COMMAND@" -E remove_directory "${GEOS_INCLUDE_DIR}"
   OUTPUT_VARIABLE rm_out
   RESULT_VARIABLE rm_retval)
 

commit 874c2e253bd409174ccac648dc38851edfc7f59e
Author: Sandro Santilli <strk at kbt.io>
Date:   Wed Oct 30 08:25:07 2024 +0100

    Fix uninstall Makefile rule
    
    Syntax confirmed by
    https://gitlab.kitware.com/cmake/community/-/wikis/FAQ#can-i-do-make-uninstall-with-cmake
    
    Closes GH-1187
    References GH-1102 when it probably broke

diff --git a/cmake/cmake_uninstall.cmake.in b/cmake/cmake_uninstall.cmake.in
index 749221415..7eab12b3f 100644
--- a/cmake/cmake_uninstall.cmake.in
+++ b/cmake/cmake_uninstall.cmake.in
@@ -31,7 +31,7 @@ foreach(file ${files})
   endif()
 
   execute_process(
-    COMMAND "@CMAKE_COMMAND@" -E remove \"$ENV{DESTDIR}${file}\"
+    COMMAND "@CMAKE_COMMAND@" -E remove "$ENV{DESTDIR}${file}"
     OUTPUT_VARIABLE rm_out
     RESULT_VARIABLE rm_retval)
 

-----------------------------------------------------------------------

Summary of changes:
 cmake/cmake_uninstall.cmake.in | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
GEOS


More information about the geos-commits mailing list