forked from Lainports/opnsense-ports
Taken from: https://github.com/freebsd/freebsd-ports.git Commit id: 5070672073b68be364139bc6b3a89100bd17d331
11 lines
222 B
Bash
11 lines
222 B
Bash
#!/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
|