home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / var / lib / dpkg / info / mono-jit.postinst < prev    next >
Encoding:
Text File  |  2009-08-19  |  488 b   |  15 lines

  1. #!/bin/sh -e
  2.  
  3. # if we're configuring, /usr/share/doc/mono-jit is a directory,
  4. # and isn't a symlink, replace it with a symlink to mono-common
  5. if test "$1" = "configure" && test -d /usr/share/doc/mono-jit && ! test -h /usr/share/doc/mono-jit ; then
  6.         rmdir /usr/share/doc/mono-jit
  7.         ln -s mono-common /usr/share/doc/mono-jit
  8. fi
  9.  
  10. update-alternatives \
  11.     --install /usr/bin/cli cli /usr/bin/mono 10 \
  12.     --slave /usr/share/man/man1/cli.1.gz cli.1.gz /usr/share/man/man1/mono.1.gz
  13.  
  14.  
  15.