#!/bin/bash hook_add postmake 3 "plugin_postm"plugin_postm() { for i in {$libdir,$root/opt}/{firefox,mozilla}-*/plugins ; do if [ -d $i ] ; then \ install plugger.so $i/ fi done}
#!/bin/bash
hook_add postmake 3 "plugin_postm"
plugin_postm() {
for i in {$libdir,$root/opt}/{firefox,mozilla}-*/plugins ; do
if [ -d $i ] ; then \
install plugger.so $i/
fi
done
}