+debhelper (1.2.11) unstable; urgency=low
+
+ * dh_movefiles: if given absolute filenames to move (note that that is
+ *wrong*), it will move relative files anyway. Related to bug #29761.
+ * dh_link: made relative links work right. (I hope!)
+
+ -- Joey Hess <joeyh@master.debian.org> Fri, 20 Nov 1998 20:21:51 -0800
+
debhelper (1.2.10) unstable; urgency=low
* examples/*: added dh_link calls to example rules files.
./dh_installmanpages
./dh_installchangelogs
./dh_movefiles
+ ./dh_link
./dh_compress
./dh_fixperms
./dh_suidregister
for (1..$#dest_dirs - $x) {
$src.="../";
}
- # The + 1 is here to include the actual filename.
- for (1..$#src_dirs - $x + 1) {
+ for ($x .. $#src_dirs) {
$src.=$src_dirs[$_]."/";
}
$src=~s:/$::;
- }
+ }
doit("ln","-sf",$src,"$TMP/$dest");
}
foreach (@filelist) {
$file=$_;
$ret=1 if (! -e $file && ! -l $file);
- $file=~s:^debian/tmp/*::;
+ $file=~s:^debian/tmp/+::;
complex_doit("(cd debian/tmp ; find $file ! -type d -and ! -type l -print || true) >> movelist");
}
foreach (@filelist) {
$file=$_;
$ret=1 if (! -e $file && ! -l $file);
- $file=~s:^debian/tmp/*::;
+ $file=~s:^debian/tmp/+::;
complex_doit("(cd debian/tmp ; find $file ! -type d -and -type l -print || true) >> movelist");
}
complex_doit("(cd debian/tmp;tar --create --remove-files --files-from=../../movelist --file -) | (cd $TMP;tar xpf -)");