X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=dh_du;h=f81b074d464c62db6de311426f97ae43fe1e3791;hb=2498b1b9d483d1b79883677a72689e76acee3b9d;hp=71ce2b1368998fc3c1182c8f446c1e2d7b193428;hpb=2dc6b1e7754c88976aadefb20a4d387e8cf8b4ce;p=debhelper.git diff --git a/dh_du b/dh_du index 71ce2b1..f81b074 100755 --- a/dh_du +++ b/dh_du @@ -1,19 +1,11 @@ -#!/bin/sh -e +#!/usr/bin/perl -w # # Generate a DEBIAN/du file, that lists the disk usage of the directories in # the package. +# +# No longer - it was decided these files are a bad idea. -PATH=debian:$PATH:/usr/lib/debhelper -. dh_lib - -for PACKAGE in $DH_DOPACKAGES; do - TMP=`tmpdir $PACKAGE` - - if [ ! -d "$TMP/DEBIAN" ]; then - doit "install -d $TMP/DEBIAN" - fi +BEGIN { push @INC, "debian", "/usr/lib/debhelper" } +use Dh_Lib; - # Note that the tabs in this next line are important. - complex_doit "du -k $TMP | sed 's: $TMP/: :' | grep -v ' DEBIAN$' | grep -v ' $TMP$' >$TMP/DEBIAN/du" - doit "chown root.root $TMP/DEBIAN/du" -done +warning("this program does nothing and is deprecated. Remove it from debian/rules.");