~angelsl/ubuntu/wily/gcc-5/mips-cross

« back to all changes in this revision

Viewing changes to debian/dh_rmemptydirs

  • Committer: angelsl
  • Date: 2015-10-30 03:30:35 UTC
  • Revision ID: angelsl-20151030033035-rmug41zm8hyjgisg
Original import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /bin/sh -e
 
2
 
 
3
pkg=`echo $1 | sed 's/^-p//'`
 
4
 
 
5
: # remove empty directories, when all components are in place
 
6
for d in `find debian/$pkg -depth -type d -empty 2> /dev/null`; do \
 
7
    while rmdir $d 2> /dev/null; do d=`dirname $d`; done; \
 
8
done
 
9
 
 
10
exit 0