Remove $postinstall_helpers and $tar_override_cmd.

These were used in the NetBSD days... not now.

--HG--
extra : convert_revision : 3c3f4de397389cec1ea1326f39bded7a93173c39
This commit is contained in:
Juan RP 2009-03-12 10:33:48 +01:00
parent faacfde259
commit 5862f23e6f
2 changed files with 5 additions and 13 deletions

View file

@ -88,8 +88,8 @@ stow_pkg_real()
# Copy files into masterdir.
for i in $(echo *); do
[ "$i" = "XBPS_PREPOST_INSTALL" ] && continue
cp -ar ${i} $XBPS_MASTERDIR
[ "$i" = "INSTALL" ] && continue
cp -a ${i} $XBPS_MASTERDIR
done
#
@ -102,14 +102,6 @@ stow_pkg_real()
fi
$XBPS_REGPKGDB_CMD $regpkgdb_flags register \
$pkg $version "$short_desc" || exit 1
#
# Run template postinstall helpers if requested.
#
for i in ${postinstall_helpers}; do
local pihf="$XBPS_HELPERSDIR/$i"
[ -f "$pihf" ] && . $pihf
done
}
#