in reply to Re: Error in installing IO TTY Module
in thread Error in installing IO TTY Module

Hello Robo, Here are some few findings, The OS is HP-UX When I run the perl –V:cc command the output it shows is “cc=gcc”. But then when I changed the location of CC (using the export command, export CC=/usr/bin/cc). The log file showed this error "sh: mor: not found"
  • Comment on Re^2: Error in installing IO TTY Module

Replies are listed 'Best First'.
Re^3: Error in installing IO TTY Module
by cdarke (Prior) on Oct 20, 2009 at 07:47 UTC
    Looks like your perl was compiled with gcc but you do not have gcc installed. The /usr/bin/cc is probably HP's C compiler. Mixing compilers sometimes works, sometimes not, so even if you succeded in using cc instead of gcc (you could setup a symbolic link) you might get problems later. You need to install gcc (Google gcc - it is free) or recompile perl using the HP compiler.
    The error sh:mor: not found does not seem to be connected to the compiler issue. Are you sure no one edited the Makefile and inadvertantly deleted the e from more?