blob: b9da5d4f1cf1bd513ae40400351f0f487e75ff85 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/bash
LIBDIR="@LIBDIR@"
if [[ -e "$LIBDIR/libv4l/v4l2convert.so" ]]; then
export LD_PRELOAD="${LD_PRELOAD:+$LD_PRELOAD:}$LIBDIR/libv4l/v4l2convert.so"
fi
if [[ -e "/usr/share/skype/lib/libQtWebKit.so.4" ]]; then
export LD_PRELOAD="${LD_PRELOAD:+$LD_PRELOAD:}/usr/share/skype/lib/libQtWebKit.so.4"
fi
exec "$LIBDIR/skype/skype" "$@"
|