summaryrefslogtreecommitdiff
path: root/dh_movefiles
diff options
context:
space:
mode:
authorjoey <joey>2000-11-06 23:57:58 +0000
committerjoey <joey>2000-11-06 23:57:58 +0000
commit1d9a72073d0f54f96be2404929a452cdf90c2f6b (patch)
treef9d68fc88fe0661e807c6f26c56bfab80e306b15 /dh_movefiles
parent86f7ae9de59a682f596bff2fbaae1b7f05b82370 (diff)
r383: * dh_movefiles: no longer does the symlink ordering hack, as
this is supported by dpkg itself now. Added a dependancy on dpkg-dev >= 1.7.0 to make sure this doesn't break anything. * While I'm updating for dpkg 1.7.0, I removed the -ldirectory hack from dh_shlibdeps; dpkg-shlibdeps has its own much more brutal hack to make this work. The switch is ignored now for backwards compatability. * dh_suidregister will be deprecated soon -- dpkg-statoverride is a much better way.
Diffstat (limited to 'dh_movefiles')
-rwxr-xr-xdh_movefiles8
1 files changed, 1 insertions, 7 deletions
diff --git a/dh_movefiles b/dh_movefiles
index 60e16f12..f2ea1231 100755
--- a/dh_movefiles
+++ b/dh_movefiles
@@ -61,13 +61,7 @@ foreach $PACKAGE (@{$dh{DOPACKAGES}}) {
$file=$_;
$ret=1 if (! -e $file && ! -l $file);
$file=~s:^\Q$sourcedir\E/+::;
- complex_doit("(cd $sourcedir >/dev/null ; find $file ! -type d -and ! -type l -print || true) >> debian/movelist");
- }
- foreach (@filelist) {
- $file=$_;
- $ret=1 if (! -e $file && ! -l $file);
- $file=~s:^\Q$sourcedir\E/+::;
- complex_doit("(cd $sourcedir >/dev/null ; find $file ! -type d -and -type l -print || true) >> debian/movelist");
+ complex_doit("(cd $sourcedir >/dev/null ; find $file ! -type d -print || true) >> debian/movelist");
}
complex_doit("(cd $sourcedir >/dev/null ; tar --create --remove-files --files-from=../movelist --file -) | (cd $TMP >/dev/null ;tar xpf -)");
doit("rm","-f","debian/movelist");