mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
12 lines
163 B
Text
12 lines
163 B
Text
post_install() {
|
|
grep -e "/opt/gnome/lib" /etc/ld.so.conf
|
|
if [ $? <> 0 ]; then
|
|
echo "/opt/gnome/lib" >> /etc/ld.so.conf;
|
|
ldconfig;
|
|
fi
|
|
}
|
|
|
|
op=$1
|
|
shift
|
|
|
|
$op "$@"
|