~ubuntu-branches/ubuntu/trusty/aptoncd/trusty

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Bazaar Package Importer
  • Author(s): Fabrice Coutadeur
  • Date: 2009-08-24 09:56:20 UTC
  • mfrom: (1.2.2 upstream)
  • mto: This revision was merged to the branch mainline in revision 5.
  • Revision ID: james.westby@ubuntu.com-20090824095620-l8xc7to4177x213a
* New upstream release
  - Deliver again the translations
* debian/rules: optimize the clean target

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
clean: 
37
37
        dh_testdir
38
38
        dh_testroot
39
 
        rm -f build-stamp configure-stamp
 
39
        rm -f build-stamp configure-stamp build-python*
40
40
 
41
 
        #python ./setup.py clean --all
 
41
        rm -rf build
42
42
        find . -name ".svn" -exec rm -fr {} \;
43
 
        find . -name ".bzr" -exec rm -fr {} \;
44
43
        find . -name "*.pyc" -exec rm {} \;
 
44
        rm -rf po/mo
45
45
 
46
46
        dh_clean 
47
47