aboutsummaryrefslogtreecommitdiff
path: root/devel/pear/pkg-install
blob: 26a929b81d17fdfccc8311d24efa41ff5efa12f3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

if [ "$2" != "POST-INSTALL" ]; then
	exit 0
fi
 
# Regenerate %%PEARDIR%%/.depdb post-install
# This is to prevent fs or stage violation for first dependent port
${PKG_PREFIX}/bin/pear list > /dev/null
 
exit 0