From: giorgos chadjipavlis Subject: firefox-bin: fix reinstallation of firefox-bin after every lunar fix in case where flash-plugin-11 is not installed --- module: firefox-bin id: c57d0a1ebf0f935e9176d6923e035679 lvu submit: firefox-bin lvu: db8269a81dadf0ff44025fd3ec5ee33d - uname -r: 4.3.4 kernel headers: 4.0-x86_64 gcc: 4.9.2 glibc: 2.22 --- other/web/firefox-bin/BUILD | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) --- diff a/other/web/firefox-bin b/other/web/firefox-bin --- a/other/web/firefox-bin/BUILD 2016-02-15 18:31:10.000000000 +0200 +++ b/other/web/firefox-bin/BUILD 2016-02-16 14:56:26.920101939 +0200 @@ -3,7 +3,9 @@ cd /usr/lib && unpack $SOURCE && -ln -snf /usr/lib/lunar/plugins /usr/lib/firefox/browser/plugins && +if [ -d /usr/lib/lunar/plugins ]; then + ln -snf /usr/lib/lunar/plugins /usr/lib/firefox/browser/plugins +fi && if [ ! -h /usr/bin/firefox ]; then ln -snf /usr/lib/firefox/firefox /usr/bin/firefox fi &&