summaryrefslogtreecommitdiff
path: root/dh_movefiles
diff options
context:
space:
mode:
authorjoey <joey>2000-11-28 05:12:23 +0000
committerjoey <joey>2000-11-28 05:12:23 +0000
commit5c808f0c60445978cb180202a9f760032d24f742 (patch)
treea206c5cb4d265fa5321d84aa30dff7164f116bce /dh_movefiles
parentc577623cfbfa6aedbe12da4b96759864ae6f466d (diff)
r398: * If DH_COMPAT=3 is set, the following happens:
- Various debian/foo files like debian/docs, debian/examples, etc, begin to support filename globbing. use \* to escape the wildcards of course. I doubt this will bite anyone (Debian doesn't seem to contain files with "*" or "?" in their names..), but it is guarded by v3 just to be sure. Closes: #34120, #37694, #39846, #46249
Diffstat (limited to 'dh_movefiles')
-rwxr-xr-xdh_movefiles5
1 files changed, 1 insertions, 4 deletions
diff --git a/dh_movefiles b/dh_movefiles
index 1ee71e76..6e3a8688 100755
--- a/dh_movefiles
+++ b/dh_movefiles
@@ -41,7 +41,7 @@ foreach $PACKAGE (@{$dh{DOPACKAGES}}) {
}
# Now we need to expand wildcards in @tomove.
- # This is only necessary in pre-v3 land, as of v3, the
+ # This is only necessary in pre-v3 land -- as of v3, the
# expension is automatically done by filearray().
if (@tomove && ! Debian::Debhelper::Dh_Lib::compat(3)) {
@filelist=();
@@ -56,9 +56,6 @@ foreach $PACKAGE (@{$dh{DOPACKAGES}}) {
doit("install","-d",$TMP);
}
- # Order the files. First all real files, then symlinks.
- # Putting symlinks last is a nice thing to do for library
- # packages and doesn't affect much of anything else.
doit("rm","-f","debian/movelist");
foreach (@tomove) {
$file=$_;