wok-next rev 20633

xine-plugin: fix 32 bit
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Apr 27 12:07:24 2018 +0300 (2018-04-27)
parents 2e62e363bcba
children 1612045ecc18
files xine-plugin/receipt
line diff
     1.1 --- a/xine-plugin/receipt	Fri Apr 27 10:53:56 2018 +0300
     1.2 +++ b/xine-plugin/receipt	Fri Apr 27 12:07:24 2018 +0300
     1.3 @@ -22,8 +22,18 @@
     1.4  	make DESTDIR=$DESTDIR install || return 1
     1.5  
     1.6  	mkdir -p $install/usr/share/xine
     1.7 -	mv $install/root/.mozilla/plugins/* $install/usr/share/xine/
     1.8 -	rm -r $install/root/
     1.9 +	# There's something different, don't know why
    1.10 +	if [ -d $install/root ]; then
    1.11 +		# in next64
    1.12 +		echo "Found $install/root/.mozilla/plugins/"
    1.13 +		mv $install/root/.mozilla/plugins/* $install/usr/share/xine/
    1.14 +		rm -r $install/root/
    1.15 +	else
    1.16 +		# in next
    1.17 +		echo "Found $install/.mozilla/plugins/"
    1.18 +		mv $install/.mozilla/plugins/* $install/usr/share/xine/
    1.19 +		rm -r $install/.mozilla
    1.20 +	fi
    1.21  }
    1.22  
    1.23  genpkg_rules() {