blob: 75c3ab625642845f4f86964c5d2c9899f8222fef (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#!/bin/sh
case $2 in
POST-INSTALL)
if ! test -f %%PREFIX%%/bin/json_pp; then
echo "===> Reinstalling missing %%PREFIX%%/bin/json_pp"
cp -p %%PREFIX%%/bin/p5json_pp %%PREFIX%%/bin/json_pp
fi
esac
|