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 e7b5bea commit 48e7e94Copy full SHA for 48e7e94
plugins/make_deb
@@ -230,6 +230,12 @@ EOF
230
cp -R --preserve=links ${GIT_ROOT}/build/lib* "plugins/${plugin_type_install}/${plugin_install_dirname}" 2>/dev/null || \
231
cp -R --preserve=links ${GIT_ROOT}/*.json "plugins/${plugin_type_install}/${plugin_install_dirname}" 2>/dev/null || \
232
echo "Unable to find libraries in ${GIT_ROOT}/build and json config files in ${GIT_ROOT}, cannot proceed..."
233
+ # Special Case for ubs4704 south plugin
234
+ if [ "${plugin_name}" = "usb4704" ]; then
235
+ cd -
236
+ mkdir -p usr/lib
237
+ cp -R --preserve=links /usr/lib/libbiodaq* usr/lib
238
+ fi
239
fi
240
echo "Done."
241
0 commit comments