-
Notifications
You must be signed in to change notification settings - Fork 2
Adding changes to copy openssl and curl libraries to build/bin #211
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: develop
Are you sure you want to change the base?
Changes from all commits
66c4f1a
2ac8b34
998663c
58433af
31da6ec
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -132,7 +132,13 @@ framework: checkvariantchange createdirs download_and_build | |
| @${ECHOE} ${GREEN}Framework downloaded and built${NC} | ||
| @make test VARIANT=${VARIANT} | ||
| @cp -r $(UT_CONTROL)/build/$(TARGET)/lib/libut_control.* $(LIB_DIR) $(BIN_DIR) | ||
| @${ECHOE} ${GREEN}ut-control LIB Copied to [${BIN_DIR}]${NC} | ||
| @if [ -d "$(UT_CONTROL)/build/$(TARGET)/curl" ]; then \ | ||
| cp -r $(UT_CONTROL)/build/$(TARGET)/curl/lib/libcurl.so* $(LIB_DIR) $(BIN_DIR); \ | ||
| fi | ||
| @if [ -d "$(UT_CONTROL)/build/$(TARGET)/openssl" ]; then \ | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. makes no-sense, ut-core has no reason to know about openssl surely? |
||
| cp -r $(UT_CONTROL)/build/$(TARGET)/openssl/lib/lib*.so* $(LIB_DIR) $(BIN_DIR); \ | ||
| fi | ||
| @${ECHOE} ${GREEN}ut-control and related LIBs Copied to [${BIN_DIR}]${NC} | ||
| @if [ -d "$(TOP_DIR)/../include" ] && [ -d "$(BUILD_DIR)/src" ]; then \ | ||
| ${UT_CORE_DIR}/compare-functions-in-headers-testsuite.sh $(TOP_DIR)/../include $(BIN_DIR)/${TARGET_EXEC} ${TARGET}; \ | ||
| fi | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -117,7 +117,8 @@ else | |
| check_ut_control_revision | ||
| # Check out the version required based on control_revision | ||
| pushd ${UT_CONTROL_LIB_DIR} > /dev/null | ||
| git checkout ${UT_CONTROL_PROJECT_VERSION} # MARKER: Version=${UT_CONTROL_PROJECT_VERSION} | ||
| #git checkout ${UT_CONTROL_PROJECT_VERSION} # MARKER: Version=${UT_CONTROL_PROJECT_VERSION} | ||
| git checkout feature/gh79-ut-control-reduce-size # MARKER: Version=${UT_CONTROL_PROJECT_VERSION} | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. you need to revert this one. |
||
| # Note: The above line can be modified by release test scripts to checkout a specific version or branch | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This change needs to be reverted before final approval. |
||
| popd > /dev/null | ||
| configure_ut_control | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok that's not clear..
why has ut-core any knowledge curl is being used? that library is something that's provided by ut-control has nothitng todo with ut-core?