Revision: 77759
          http://sourceforge.net/p/brlcad/code/77759
Author:   starseeker
Date:     2020-11-20 17:48:04 +0000 (Fri, 20 Nov 2020)
Log Message:
-----------
Remove verbose debugging printing

Modified Paths:
--------------
    brlcad/branches/extbuild/src/other/ext/CMake/ExternalProject_Target.cmake

Modified: 
brlcad/branches/extbuild/src/other/ext/CMake/ExternalProject_Target.cmake
===================================================================
--- brlcad/branches/extbuild/src/other/ext/CMake/ExternalProject_Target.cmake   
2020-11-20 17:45:12 UTC (rev 77758)
+++ brlcad/branches/extbuild/src/other/ext/CMake/ExternalProject_Target.cmake   
2020-11-20 17:48:04 UTC (rev 77759)
@@ -32,14 +32,10 @@
   if(APPLE)
     set(CMAKE_BUILD_RPATH \"${CMAKE_BUILD_RPATH}\")
     execute_process(COMMAND otool -l \"\${SRC}\" RESULT_VARIABLE ORET 
OUTPUT_VARIABLE OTOOL_OUT ERROR_VARIABLE OTOOL_OUT)
-    message(\"\${SRC} OTOOL_OUT: \${OTOOL_OUT}\\n\")
     if (NOT ORET)
       if (NOT \"\${OTOOL_OUT}\" MATCHES \".*LC_RPATH.*\")
        execute_process(COMMAND chmod u+w \"\${SRC}\")
        execute_process(COMMAND install_name_tool -add_rpath 
\"\${CMAKE_BUILD_RPATH}\" \"\${SRC}\")
-       execute_process(COMMAND chmod u-w \"\${SRC}\")
-       execute_process(COMMAND otool -l \"\${SRC}\" OUTPUT_VARIABLE OTOOL_OUT2)
-       message(\"OTOOL_OUT2: \${OTOOL_OUT2}\")
       endif ()
     endif ()
   endif()
@@ -274,22 +270,10 @@
   if (APPLE)
     # install_name_tool works more reliably than file(RPATH_CHANGE) on the 
Mac...
     install(CODE "
-    message(\"OLD_RPATH: ${CMAKE_BUILD_RPATH}\")
-    message(\"NEW_RPATH: ${NEW_RPATH}\")
     set(WPATH \"\$ENV{DESTDIR}\${CMAKE_INSTALL_PREFIX}/${OFILE}\")
-    execute_process(COMMAND ls -l \${CMAKE_INSTALL_PREFIX}/${OFILE})
     execute_process(COMMAND chmod u+w \${CMAKE_INSTALL_PREFIX}/${OFILE})
-    execute_process(COMMAND ls -l \${CMAKE_INSTALL_PREFIX}/${OFILE})
-    execute_process(COMMAND otool -l \"\${WPATH}\" OUTPUT_VARIABLE OTOOL_OUT)
-    message(\"OTOOL_OUT: \${OTOOL_OUT}\")
-    message(\"install_name_tool -delete_rpath ${CMAKE_BUILD_RPATH} \${WPATH}\")
     execute_process(COMMAND install_name_tool -delete_rpath 
\"${CMAKE_BUILD_RPATH}\" \"\${WPATH}\")
-    execute_process(COMMAND otool -l \"\${WPATH}\" OUTPUT_VARIABLE OTOOL_OUT2)
-    message(\"OTOOL_OUT2: \${OTOOL_OUT2}\")
-    message(\"install_name_tool -add_rpath ${NEW_RPATH} \${WPATH}\")
     execute_process(COMMAND install_name_tool -add_rpath \"${NEW_RPATH}\" 
\"\${WPATH}\")
-    execute_process(COMMAND otool -l \"\${WPATH}\" OUTPUT_VARIABLE OTOOL_OUT3)
-    message(\"OTOOL_OUT3: \${OTOOL_OUT3}\")
     ")
   else (APPLE)
     install(CODE "

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.



_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to