mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
213a57385a
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
17 lines
351 B
Bash
17 lines
351 B
Bash
#!/bin/sh
|
|
config() {
|
|
old="$1"
|
|
new="$old.new"
|
|
if [ ! -r $old ]; then
|
|
mv $new $old
|
|
elif [ "$(cat $old | md5sum)" = "$(cat $new | md5sum)" ]; then
|
|
rm $new
|
|
fi
|
|
}
|
|
config etc/findlib.conf
|
|
|
|
destdir=$(ocamlfind printconf destdir)/stublibs
|
|
ldconf=$(ocamlfind printconf ldconf)
|
|
if ! grep -q $destdir $ldconf; then
|
|
echo $destdir >> $ldconf
|
|
fi
|