]> git.proxmox.com Git - ceph.git/blob - ceph/src/jaegertracing/opentelemetry-cpp/tools/vcpkg/ports/openssl/unix/remove-deps.cmake
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / jaegertracing / opentelemetry-cpp / tools / vcpkg / ports / openssl / unix / remove-deps.cmake
1 file(GLOB_RECURSE MAKEFILES ${DIR}/*/Makefile)
2 foreach(MAKEFILE ${MAKEFILES})
3 message("removing deps from ${MAKEFILE}")
4 file(READ "${MAKEFILE}" _contents)
5 string(REGEX REPLACE "\n# DO NOT DELETE THIS LINE.*" "" _contents "${_contents}")
6 file(WRITE "${MAKEFILE}" "${_contents}")
7 endforeach()