Skip to content

Commit 7e8a4fb

Browse files
committed
Move logic used for moving built libraries
1 parent 0ab17c0 commit 7e8a4fb

File tree

5 files changed

+10
-2
lines changed

5 files changed

+10
-2
lines changed

Build Dependencies/Libraries/build_libgcrypt.sh

+2
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,6 @@ cd "./libgcrypt-source"
2323
make
2424
make install
2525

26+
mv "${SHARED_RESULT_LIBRARY_LOCATION}/libgcrypt.a" "${SHARED_RESULT_LIBRARY_STATIC_LOCATION}"
27+
2628
popd

Build Dependencies/Libraries/build_libgpg-error.sh

+2
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,6 @@ cd "./libgpg-error-source"
2121
make
2222
make install
2323

24+
mv "${SHARED_RESULT_LIBRARY_LOCATION}/libgpg-error.a" "${SHARED_RESULT_LIBRARY_STATIC_LOCATION}"
25+
2426
popd

Build Dependencies/Libraries/build_libotr.sh

+2
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,6 @@ cd "./libotr-source"
2222
make
2323
make install
2424

25+
mv "${SHARED_RESULT_LIBRARY_LOCATION}/libotr.a" "${SHARED_RESULT_LIBRARY_STATIC_LOCATION}"
26+
2527
popd

Build Dependencies/Libraries/build_libressl.sh

+4
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,8 @@ cd "./libressl-source"
2222
make
2323
make install
2424

25+
mv "${SHARED_RESULT_LIBRARY_LOCATION}/libcrypto.a" "${SHARED_RESULT_LIBRARY_STATIC_LOCATION}"
26+
mv "${SHARED_RESULT_LIBRARY_LOCATION}/libssl.a" "${SHARED_RESULT_LIBRARY_STATIC_LOCATION}"
27+
mv "${SHARED_RESULT_LIBRARY_LOCATION}/libtls.a" "${SHARED_RESULT_LIBRARY_STATIC_LOCATION}"
28+
2529
popd

Build Dependencies/buildDependencies.sh

-2
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,4 @@ do
6464
deleteOldAndCreateDirectory "${LIBRARY_WORKING_DIRECTORY_LOCATION}"
6565

6666
"./Build Dependencies/Libraries/build_${LIBRARY_TO_BUILD}.sh"
67-
68-
mv "${SHARED_RESULT_LIBRARY_LOCATION}/${LIBRARY_TO_BUILD}.a" "${SHARED_RESULT_LIBRARY_STATIC_LOCATION}"
6967
done

0 commit comments

Comments
 (0)