You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by ph...@apache.org on 2019/08/26 18:39:55 UTC

[nifi-minifi-cpp] branch master updated: MINIFICPP-1014 - Fix SFTP extension build on MacOS

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

phrocker pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nifi-minifi-cpp.git


The following commit(s) were added to refs/heads/master by this push:
     new c916d15  MINIFICPP-1014 - Fix SFTP extension build on MacOS
     new f2fb81a  Merge pull request #633 from bakaid/MINIFICPP-1014
c916d15 is described below

commit c916d15b8ddd3c45646ccb7f66765b7643f46626
Author: Daniel Bakai <ba...@gmail.com>
AuthorDate: Mon Aug 26 13:10:49 2019 +0200

    MINIFICPP-1014 - Fix SFTP extension build on MacOS
---
 extensions/sftp/tests/CMakeLists.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/extensions/sftp/tests/CMakeLists.txt b/extensions/sftp/tests/CMakeLists.txt
index afff438..d350dbd 100644
--- a/extensions/sftp/tests/CMakeLists.txt
+++ b/extensions/sftp/tests/CMakeLists.txt
@@ -45,7 +45,7 @@ if (NOT SKIP_TESTS AND Java_FOUND AND Maven_FOUND AND NOT DISABLE_EXPRESSION_LAN
 		# need to add reference to minifi to get EL support for these tests.
 		# these tests aren't valid without EL
 		if (APPLE)
-			target_link_libraries (${testfilename} -Wl,-all_load ${LIBSSH2_LIBRARY} ${ZLIB_LIBRARY} ${OPENSSL_LIBRARIES}  minifi-expression-language-extensions inifi-sftp minifi-standard-processors sftp-test-tools)
+			target_link_libraries (${testfilename} -Wl,-all_load ${LIBSSH2_LIBRARY} ${ZLIB_LIBRARY} ${OPENSSL_LIBRARIES}  minifi-expression-language-extensions minifi-sftp minifi-standard-processors sftp-test-tools)
 		else ()
 			target_link_libraries (${testfilename} -Wl,--whole-archive ${LIBSSH2_LIBRARY} ${ZLIB_LIBRARY} ${OPENSSL_LIBRARIES}  minifi-expression-language-extensions minifi-sftp minifi-standard-processors sftp-test-tools -Wl,--no-whole-archive)
 		endif ()