From: Numan Siddique <[email protected]>

OSX job is failing with the below error even though the job
disables SSL.
----
ld: library 'ssl' not found
----
Passing OPTS to the OSX build fixes this issue.

This issue is already addressed in ovs [1].

[1] - 
https://github.com/openvswitch/ovs/commit/2f34475a9708617eaa484044a5b485980b734b38

Signed-off-by: Numan Siddique <[email protected]>
---
 .ci/osx-build.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.ci/osx-build.sh b/.ci/osx-build.sh
index 4b78b66dd1..3fcc801e7f 100755
--- a/.ci/osx-build.sh
+++ b/.ci/osx-build.sh
@@ -19,7 +19,7 @@ function configure_ovn()
     ./boot.sh && ./configure $*
 }
 
-configure_ovn $EXTRA_OPTS $*
+configure_ovn $EXTRA_OPTS $OPTS $*
 
 if [ "$CC" = "clang" ]; then
     set make CFLAGS="$CFLAGS -Wno-error=unused-command-line-argument"
-- 
2.44.0

_______________________________________________
dev mailing list
[email protected]
https://mail.openvswitch.org/mailman/listinfo/ovs-dev

Reply via email to