aboutsummaryrefslogtreecommitdiffstats
path: root/testing/ffmpegthumbnailer
diff options
context:
space:
mode:
authorStuart Cardall <developer@it-offshore.co.uk>2016-03-08 12:34:00 +0000
committerTimo Teräs <timo.teras@iki.fi>2016-03-08 19:00:33 +0000
commit4beff7053aa1e127de99ee2c84ab7e90154ebdf5 (patch)
tree45fc1a8a7e4041d591490c5974185a05d6abc5cc /testing/ffmpegthumbnailer
parent13c266a262374f037351e6da040d052b45a34ef7 (diff)
downloadaports-4beff7053aa1e127de99ee2c84ab7e90154ebdf5.tar.bz2
aports-4beff7053aa1e127de99ee2c84ab7e90154ebdf5.tar.xz
testing/ffmpegthumbnailer: fix 32bit / arm build errors
Diffstat (limited to 'testing/ffmpegthumbnailer')
-rw-r--r--testing/ffmpegthumbnailer/APKBUILD4
1 files changed, 3 insertions, 1 deletions
diff --git a/testing/ffmpegthumbnailer/APKBUILD b/testing/ffmpegthumbnailer/APKBUILD
index 40a4720f43..bf1efd94eb 100644
--- a/testing/ffmpegthumbnailer/APKBUILD
+++ b/testing/ffmpegthumbnailer/APKBUILD
@@ -31,7 +31,9 @@ build() {
package() {
cd "$_builddir"
make DESTDIR="$pkgdir" install || return 1
- mv "$pkgdir"/usr/lib64 "$pkgdir"/usr/lib
+ if [ -d "$pkgdir/usr/lib64" ]; then
+ mv "$pkgdir"/usr/lib64 "$pkgdir"/usr/lib
+ fi
}
md5sums="753c8ba68f66ae085ef178d7c5966cae ffmpegthumbnailer-2.1.1.tar.bz2"