summaryrefslogtreecommitdiff
path: root/dselect/methods/multicd/install
diff options
context:
space:
mode:
authorGuillem Jover <guillem@debian.org>2009-11-07 14:04:41 +0100
committerGuillem Jover <guillem@debian.org>2009-11-07 18:15:01 +0100
commit0814d1b1eb42c08809d31980d9a7f2b921c713e5 (patch)
treee7e4cffd642c9fe323125d1f3954d8ac56924971 /dselect/methods/multicd/install
parent03b7c00daf4dbf20898dd6c214a4a399d4e2e002 (diff)
downloaddpkg-0814d1b1eb42c08809d31980d9a7f2b921c713e5.tar.gz
Use find with -L instead of deprecated -follow
Diffstat (limited to 'dselect/methods/multicd/install')
-rwxr-xr-xdselect/methods/multicd/install4
1 files changed, 2 insertions, 2 deletions
diff --git a/dselect/methods/multicd/install b/dselect/methods/multicd/install
index 50fb07fab..cd8c5cab1 100755
--- a/dselect/methods/multicd/install
+++ b/dselect/methods/multicd/install
@@ -151,8 +151,8 @@ Please change the discs and press <RETURN>.
defined($c= open(X,"-|")) ||
die "failed to fork for find: $!\n";
if (!$c) {
- exec("find", length($binaryprefix)
- ? $binaryprefix : ".","-follow",
+ exec("find", "-L",
+ length($binaryprefix) ? $binaryprefix : ".",
"-name",$base,"-o","-name",$msdosbase);
die "failed to exec find: $!\n";
}