We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfbe800 commit 8f0ef06Copy full SHA for 8f0ef06
others/make_deb
@@ -154,7 +154,15 @@ fi
154
if [ "${ADDITIONAL_LIB_NAME}" == "s2opcua" ]; then
155
cp -R --preserve=links /usr/local/lib/libs2opc_common.so usr/local/lib
156
cp -R --preserve=links /usr/local/lib/libs2opc_clientserver.so usr/local/lib
157
- cp -R --preserve=links /usr/local/lib/libexpat.so.1 usr/local/lib
+ if [[ ${v_name} == *"bullseye"* ]]; then
158
+ if [[ ${architecture} == *"armv7l"* ]]; then
159
+ cp -R --preserve=links /usr/local/lib/arm-linux-gnueabihf/libexpat.so.1 usr/local/lib
160
+ else
161
+ cp -R --preserve=links /usr/local/lib/aarch64-linux-gnu/libexpat.so.1 usr/local/lib
162
+ fi
163
164
+ cp -R --preserve=links /usr/local/lib/libexpat.so.1 usr/local/lib
165
166
fi
167
echo "Done."
168
0 commit comments