#!/bin/ksh
#
# ident "@(#)bbinstfinish.sh	1.5 01/05/30 SMI"
#
# Copyright (c) 2001 by Sun Microsystems, Inc.
# All rights reserved.
#

extcode=0

. $BBROOT/etc/opt/SUNWbb/blackbox.rc

# temporary hack until all pkgs install into libgen instead of lib
# (acroread,fvwm2,ghostscript)
if [ -f $BBAUTOINSTALL ]; then
    (
        cd $BBROOTPATH/usr/lib
        tar cf - * | (cd $BBROOTPATH/usr/libgen; tar xf - )
    )           
fi

exit $extcode

