#! /sbin/sh
###############
# Product: UserLicense
# Fileset: *-USER
# pinstall (called from postinstall)
# @(#) $Revision: 1.2.98.1 $
################
#
# (c) Copyright Hewlett-Packard Company, 1994
#
########################################################################


Object_Src=$1
Library=$2


cp $Object_Src /tmp/param.o	# Object name in library
ar r $Library /tmp/param.o
exitval=$?
if [[ $exitval -ne 0 ]]
then
   print "ERROR:   Update of system library failed."
fi

rm -f /tmp/param.o

exit $exitval
