mirror of
https://github.com/openappsec/openappsec.git
synced 2025-06-28 16:41:02 +03:00
Updating library finding
This commit is contained in:
parent
cfcf7b883e
commit
9d848264f3
@ -1,4 +1,4 @@
|
||||
add_subdirectory(cptest)
|
||||
#add_subdirectory(cptest)
|
||||
add_subdirectory(agent_core_utilities)
|
||||
add_subdirectory(shell_cmd)
|
||||
add_subdirectory(debug_is)
|
||||
|
@ -97,7 +97,7 @@ execute_process (
|
||||
install(FILES ${boost_thread} DESTINATION orchestration/lib/boost)
|
||||
|
||||
execute_process (
|
||||
COMMAND sh -c "find /usr/lib* -name \"libcrypto.so\" | awk '{printf $0\";\"}'"
|
||||
COMMAND sh -c "find /usr/lib* -maxdepth 1 -name \"libcrypto.so*\" | awk '{printf $0\";\"}'"
|
||||
OUTPUT_VARIABLE crypto
|
||||
)
|
||||
install(FILES ${crypto} DESTINATION orchestration/lib)
|
||||
@ -108,7 +108,7 @@ execute_process (
|
||||
install(FILES ${crypto2} DESTINATION orchestration/lib)
|
||||
|
||||
execute_process (
|
||||
COMMAND sh -c "find /usr/lib* -name \"libssl.so\" | awk '{printf $1\";\"}'"
|
||||
COMMAND sh -c "find /usr/lib* -maxdepth 1 -name \"libssl.so*\" | awk '{printf $1\";\"}'"
|
||||
OUTPUT_VARIABLE ssl
|
||||
)
|
||||
install(FILES ${ssl} DESTINATION orchestration/lib)
|
||||
|
Loading…
x
Reference in New Issue
Block a user