home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2007 September / PCWSEP07.iso / Software / Linux / Linux Mint 3.0 Light / LinuxMint-3.0-Light.iso / casper / filesystem.squashfs / var / lib / dpkg / info / docbook-xml.preinst < prev    next >
Encoding:
Text File  |  2006-06-19  |  325 b   |  16 lines

  1. #!/bin/sh
  2.  
  3. set -e
  4.  
  5. # converting a directory to symlinks during package upgrade doesn't work,
  6. # lets remove the junk in here by hand
  7. # bug 143780, problems caused by danging symlinks
  8. if [ "$1" = upgrade ]; then
  9.     rm -r /usr/share/sgml/docbook/dtd/xml/[1-9]* || true
  10. fi
  11.  
  12. # automatically generated debhelper commands
  13.  
  14.  
  15. exit 0
  16.