diff options
Diffstat (limited to 'sysutils/pcbsd-syscache/pkg-install')
-rw-r--r-- | sysutils/pcbsd-syscache/pkg-install | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/sysutils/pcbsd-syscache/pkg-install b/sysutils/pcbsd-syscache/pkg-install deleted file mode 100644 index 769ac9fe31d0..000000000000 --- a/sysutils/pcbsd-syscache/pkg-install +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/sh -# Script for any install setup - -PREFIX=${PKG_PREFIX-/usr/local} - -if [ "$2" != "POST-INSTALL" ] ; then - exit 0 -fi - -# If this is during staging, we can skip for now -echo $PREFIX | grep -q '/stage/' -if [ $? -eq 0 ] ; then - exit 0 -fi - -exit 0 |