Re: 9iAS R2 SuSE 8.2 ins_calypso.mk failure install

From: Frank van Bortel <fvanbortel_at_netscape.net>
Date: Mon, 29 Dec 2003 21:59:10 +0100
Message-ID: <bsq41b$cjg$1_at_news4.tilbu1.nb.home.nl>


Yakub wrote:

> Guidance Please,
> I'm encountering make errors when installing Oracle 9iAS R2 9.0.2.0.1 on
> SuSE 8.2 Professional. The following error is generated:
> Exception Severity: 1
> Exception thrown from action: make
> Exception Name: MakefileException
> Exception String: Error in invoking target install of makefile
> /lv01/app/oracle/product/iasinf/webcache/lib/ins_calypso.mk
>
> Thanks in Advance
>

Have had the same problem - did not care; it's WebCache, and I don't have good experiences with it (V1 of 9iAS). There's some documentation on Metalink (which did not resolve the problem in RH9): doc id 144959.1 Edit $ORACLE_HOME/bin/genclntst, from line 98 onwards: do

  	case "$objname" in
  	*\(*\))
  		 # REPLACE following 2 lines
                   # library=`expr $objname : '\(.*\)\(.*\)'`
                  # object=`expr $objname : '.*\(\(.*\)\)'`
   		library=`echo $objname | sed 's/(.*)//'`
                  object=`echo $objname | sed 's/.*(//' | sed 's/)//'`
                   libname=`basename $library`
                  echo $library > $WRKDIR/$libname.nm
                  echo $object >> $WRKDIR/$libname.objs
                  ;;
          *)
                  object=$objname
                  cp $object `basename $object`
                  ;;
          esac

  done

Rerun genclntst (still barks about DISCARD), should now create libclntst9.a

Also rework the relink script:
Rework $OH/bin/relink:
line 50:
# if [ x${ORACLE_HOME} = x ] -o [ ${ORACLE_HOME} = "" ] ; then if [ x${ORACLE_HOME} = x -o ${ORACLE_HOME} = "" ] ; then

line 102 (103 after the change above):
# MAKE="/usr/ccs/bin/make" # full path to make MAKE="/usr/bin/make" # full path to make

HTH, YMMV, HAND

-- 
A prosperous 2004,
Regards,
Frank van Bortel
Received on Mon Dec 29 2003 - 21:59:10 CET

Original text of this message