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

pengzheng pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/celix.git


The following commit(s) were added to refs/heads/master by this push:
     new db3768c0 Fixed typo in bundle packaging checking path
     new 308ebf3d Merge pull request #530 from WebmasterTD/FixBundlePackaging
db3768c0 is described below

commit db3768c01c06f7fe3a0d0c46a639ee0a5a46a354
Author: Akos Melczer <[email protected]>
AuthorDate: Thu Apr 27 17:20:39 2023 +0200

    Fixed typo in bundle packaging checking path
---
 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 80255ce8..ee507c1b 100644
--- a/cmake/cmake_celix/BundlePackaging.cmake
+++ b/cmake/cmake_celix/BundlePackaging.cmake
@@ -367,7 +367,7 @@ function(add_celix_bundle)
         
         if(TARGET ${BUNDLE_ACTIVATOR})
             set_target_properties(${BUNDLE_TARGET_NAME} PROPERTIES 
"BUNDLE_ACTIVATOR" "$<TARGET_SONAME_FILE_NAME:${BUNDLE_ACTIVATOR}>")
-        elseif(IS_ABSOLUTE ${BUNDLE_ACTIVATOR} AND EXISTS${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}>")
         else()

Reply via email to