You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
534 B

  1. --- a/keystored/CMakeLists.txt
  2. +++ b/keystored/CMakeLists.txt
  3. @@ -69,6 +69,8 @@ find_package(SYSREPO REQUIRED)
  4. target_link_libraries(keystored ${SYSREPO_LIBRARIES})
  5. include_directories(${SYSREPO_INCLUDE_DIRS})
  6. +# skip step because of cross compiling
  7. +if (FALSE)
  8. # get sysrepo plugins directory
  9. if (NOT SR_PLUGINS_DIR)
  10. if (PKG_CONFIG_FOUND)
  11. @@ -154,3 +156,4 @@ add_custom_target(install-scripts-ide
  12. # plugins should be installed into sysrepo plugins dir
  13. install(TARGETS keystored DESTINATION ${SR_PLUGINS_DIR})
  14. +endif()