~zeller-benjamin/kubuntu-packaging/fixcmakeagain

« back to all changes in this revision

Viewing changes to debian/qtcreator.postinst

  • Committer: Bazaar Package Importer
  • Author(s): Fathi Boudra
  • Date: 2009-03-06 13:14:21 UTC
  • Revision ID: james.westby@ubuntu.com-20090306131421-0rvt7fbw13oeap10
Tags: 1.0.0-1
Initial release (Closes: #509213).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
set -e
 
4
 
 
5
case "$1" in
 
6
    configure)
 
7
    ;;
 
8
 
 
9
    abort-upgrade|abort-remove|abort-deconfigure)
 
10
    ;;
 
11
 
 
12
    *)
 
13
        echo "postinst called with unknown argument \`$1'" >&2
 
14
        exit 1
 
15
    ;;
 
16
esac
 
17
 
 
18
#DEBHELPER#
 
19
 
 
20
exit 0