File: dh_rmemptydirs

package info (click to toggle)
gcc-4.2 4.2.4-6
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 39,904 kB
  • ctags: 577
  • sloc: sh: 29,574; makefile: 1,441; perl: 165; awk: 23; cpp: 14
file content (10 lines) | stat: -rw-r--r-- 251 bytes parent folder | download | duplicates (106)
1
2
3
4
5
6
7
8
9
10
#! /bin/sh -e

pkg=`echo $1 | sed 's/^-p//'`

: # remove empty directories, when all components are in place
for d in `find debian/$pkg -depth -type d -empty 2> /dev/null`; do \
    while rmdir $d 2> /dev/null; do d=`dirname $d`; done; \
done

exit 0