mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
11 lines
289 B
Bash
11 lines
289 B
Bash
|
# we're (possibly) removing a VLC plugin, avoid "error: stale plugins
|
||
|
# cache" when running vlc.
|
||
|
|
||
|
if [ -x ./usr/lib64/vlc/vlc-cache-gen ]; then
|
||
|
./usr/lib64/vlc/vlc-cache-gen ./usr/lib64/vlc/
|
||
|
fi
|
||
|
|
||
|
if [ -x ./usr/lib/vlc/vlc-cache-gen ]; then
|
||
|
./usr/lib/vlc/vlc-cache-gen ./usr/lib/vlc/
|
||
|
fi
|