~ubuntu-branches/ubuntu/natty/mplayer-skins/natty

« back to all changes in this revision

Viewing changes to debian/preinst

  • Committer: Bazaar Package Importer
  • Author(s): Michael Vogt
  • Date: 2006-01-30 17:50:13 UTC
  • Revision ID: james.westby@ubuntu.com-20060130175013-29tnnoc34km514v5
Tags: 2-6
* debian/preinst:
  - don't fail if obsolete /usr/share/mplayer/Skin/default can't be removed

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
        # remove obsolete directory
28
28
        if [ -d ${DEFAULTDIR} ]; then
29
29
                echo Removing obsolete ${DEFAULTDIR}
30
 
                rmdir ${DEFAULTDIR}
 
30
                rmdir --ignore-fail-on-non-empt ${DEFAULTDIR}
31
31
        fi
32
32
    ;;
33
33