mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-27 23:44:04 +00:00
13 lines
163 B
Text
13 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 "$@"
|