From: Thomas Debesse Date: Fri, 31 May 2019 15:59:56 +0000 (+0200) Subject: msys2/bundle: properly parse ldd output for dll bundling on windows X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=refs%2Fmerge-requests%2F128%2Fhead;p=xonotic%2Fnetradiant.git msys2/bundle: properly parse ldd output for dll bundling on windows - properly filters out Windows dll using case insensitive grep - filters out non .dll lines in ldd output, avoid empty lines and ??? lines - copy dll preserving timestamps --- diff --git a/CMakeLists.txt b/CMakeLists.txt index c13b2ca8..74984508 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -216,7 +216,7 @@ if (BUILD_BINARIES) if (BUNDLE_LIBRARIES) add_custom_command(TARGET ${target} POST_BUILD COMMAND bash - ARGS -c "ldd '$' | grep -v /c/Windows | awk '{ print $1 }' | while read dll; do cp \"$(which $dll)\" '${PROJECT_BINARY_DIR}'; done" + ARGS -c "ldd '$' | egrep -i '\\.dll ' | grep -iv '/c/Windows' | awk '{ print $1 }' | while read dll; do cp --preserve=timestamps \"$(which $dll)\" '${PROJECT_BINARY_DIR}'; done" VERBATIM ) endif ()