Problem:
This message is displayed under AIX 5.2 at the compilation that is made with a makefile
Resolution:
This message is displayed because the value of the environment variable LIBPATH is not passed to the make command by operating system .
The temporary solution is to insert before the cob command the line :
<TAB>LIBPATH=$COBDIR/lib;export LIBPATH;\\
example :
all :
cob -x prog.cbl
is replaced by :
all :
LIBPATH=$COBDIR/lib;export LIBPATH;\\
cob -x prog.cbl
