~ubuntu-branches/ubuntu/warty/python-gnuplot/warty

« back to all changes in this revision

Viewing changes to debian/postinst

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2003-11-16 12:36:26 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20031116123626-1knq7mn30ta2q6ds
Tags: 1.7-3
Fix typo in README.Debian (closes: #219485).

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
case "$1" in
16
16
    configure|abort-upgrade|abort-remove|abort-deconfigure)
17
17
        for i in $DIRLIST ; do
18
 
            /usr/bin/python -O /usr/lib/python$PV/compileall.py -q $i
19
 
            /usr/bin/python /usr/lib/python$PV/compileall.py -q $i
 
18
            /usr/bin/python -W ignore::SyntaxWarning:: -O \
 
19
                /usr/lib/python$PV/compileall.py -q $i
 
20
            /usr/bin/python -W ignore::SyntaxWarning:: \
 
21
                /usr/lib/python$PV/compileall.py -q $i
20
22
        done
21
23
    ;;
22
24