summaryrefslogtreecommitdiff
path: root/scripts/portable_postbuild.sh
diff options
context:
space:
mode:
authorGravatar waker <wakeroid@gmail.com>2012-03-20 20:52:29 +0100
committerGravatar waker <wakeroid@gmail.com>2012-03-20 20:52:29 +0100
commit6d8f99ce8f827e95c09bfb33251fe210ce0c2c39 (patch)
tree4c320a0161509d12289d3eb1ad99ae572fff5ce9 /scripts/portable_postbuild.sh
parent010c5663fca158493ce9174407002d2fe665e2f5 (diff)
0.5.2-rc2 fixes
Diffstat (limited to 'scripts/portable_postbuild.sh')
-rwxr-xr-xscripts/portable_postbuild.sh9
1 files changed, 7 insertions, 2 deletions
diff --git a/scripts/portable_postbuild.sh b/scripts/portable_postbuild.sh
index ae9b7ec1..f572240f 100755
--- a/scripts/portable_postbuild.sh
+++ b/scripts/portable_postbuild.sh
@@ -24,12 +24,17 @@ for i in nullout cdda flac alsa mpgmad hotkeys vtx \
cp ./plugins/$i/.libs/$i.so $PLUGDIR/
elif [ -f ./plugins/$i/$i.so ]; then
cp ./plugins/$i/$i.so $PLUGDIR/
+ elif [ -f ./plugins/$i/.libs/ddb_$i.so ]; then
+ cp ./plugins/$i/.libs/ddb_$i.so $PLUGDIR/
else
echo ./plugins/$i/.libs/$i.so not found
fi
- if [ -f ./plugins/$i/.libs/${i}_gtkui.so ]; then
- cp ./plugins/$i/.libs/${i}_gtkui.so $PLUGDIR/
+ if [ -f ./plugins/$i/.libs/${i}_gtk2.so ]; then
+ cp ./plugins/$i/.libs/${i}_gtk2.so $PLUGDIR/
+ fi
+ if [ -f ./plugins/$i/.libs/${i}_gtk3.so ]; then
+ cp ./plugins/$i/.libs/${i}_gtk3.so $PLUGDIR/
fi
if [ -f ./plugins/$i/.libs/$i.fallback.so ]; then