home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 November (DVD) / PCWELT_11_2006.ISO / casper / filesystem.squashfs / var / lib / dpkg / info / gimp-python.postinst < prev    next >
Encoding:
Text File  |  2006-07-10  |  299 b   |  12 lines

  1. #!/bin/sh
  2. set -e
  3. # Automatically added by dh_python
  4. PYTHON=python2.4
  5. if which $PYTHON >/dev/null 2>&1 && [ -e /usr/lib/$PYTHON/compileall.py ]; then
  6.     DIRLIST="/usr/lib/gimp/2.0/python"
  7.     for i in $DIRLIST ; do
  8.         $PYTHON /usr/lib/$PYTHON/compileall.py -q $i
  9.     done
  10. fi
  11. # End automatically added section
  12.