This is an automated email from the ASF dual-hosted git repository.

pnoltes pushed a commit to branch 
hotfix/bnd_activator_name_typo_in_bundlepackaging
in repository https://gitbox.apache.org/repos/asf/celix.git

commit 3a8d65ba00b5fdb0a16c180578ffd22f69e1a54d
Author: Pepijn Noltes <[email protected]>
AuthorDate: Sun Jul 30 20:56:59 2023 +0200

    Remove incorrect ">" postfix for BUNDLE_ACTIVATOR value in BundlePackaging
---
 cmake/cmake_celix/BundlePackaging.cmake | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cmake/cmake_celix/BundlePackaging.cmake 
b/cmake/cmake_celix/BundlePackaging.cmake
index 7adcce9f..cbe2f855 100644
--- a/cmake/cmake_celix/BundlePackaging.cmake
+++ b/cmake/cmake_celix/BundlePackaging.cmake
@@ -376,7 +376,7 @@ function(add_celix_bundle)
             set_target_properties(${BUNDLE_TARGET_NAME} PROPERTIES 
"BUNDLE_ACTIVATOR" "$<TARGET_SONAME_FILE_NAME:${BUNDLE_ACTIVATOR}>")
         elseif(IS_ABSOLUTE ${BUNDLE_ACTIVATOR} AND EXISTS ${BUNDLE_ACTIVATOR})
             get_filename_component(ACT_NAME ${BUNDLE_ACTIVATOR} NAME)
-            set_target_properties(${BUNDLE_TARGET_NAME} PROPERTIES 
"BUNDLE_ACTIVATOR" "${ACT_NAME}>")
+            set_target_properties(${BUNDLE_TARGET_NAME} PROPERTIES 
"BUNDLE_ACTIVATOR" "${ACT_NAME}")
         else()
             message(FATAL_ERROR "Provided library (${BUNDLE_ACTIVATOR}) is not 
a target nor a absolute path to an existing library")
         endif()

Reply via email to