From 4beff7053aa1e127de99ee2c84ab7e90154ebdf5 Mon Sep 17 00:00:00 2001 From: Stuart Cardall Date: Tue, 8 Mar 2016 12:34:00 +0000 Subject: [PATCH] testing/ffmpegthumbnailer: fix 32bit / arm build errors --- testing/ffmpegthumbnailer/APKBUILD | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/testing/ffmpegthumbnailer/APKBUILD b/testing/ffmpegthumbnailer/APKBUILD index 40a4720f432..bf1efd94eb0 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"