home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 June / PCWorld_2005-06_cd.bin / software / vyzkuste / firewally / firewally.exe / framework-2.3.exe / terminfo.sh.done < prev    next >
Text File  |  2003-08-02  |  222b  |  11 lines

  1. #!/bin/sh
  2. # This script will create a symbolic link for old curses apps
  3. # with a hardcoded TERMINFO search path.
  4. prefix=/usr
  5. libdir=${prefix}/lib
  6.  
  7. (cd ${libdir}; 
  8.   rm -f terminfo  ; ln -fs ../share/terminfo terminfo ;
  9. )
  10.  
  11.