#!/bin/sh
# Script executed after removal process.
#

PKGSROOT=/mnt/pkgs
RUNROOT=$PKGSROOT/perl

# Remove any link created to $RUNROOT
#
[ -h "$RUNROOT" ] && rm $RUNROOT

exit 0
