summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjoey <joey>2003-10-29 23:15:11 +0000
committerjoey <joey>2003-10-29 23:15:11 +0000
commit9f776f9407fac13e2804f3e408a0e96b4bdd8b59 (patch)
tree4ac62e9933781b0f945c9435c7a5780e361f059f
parent840db956a506e306b7486b3fbfe75a54276f1367 (diff)
r1620: * dh_installcatalogs: Fixed to create dir in tmpdir. Closes: #218237
-rwxr-xr-xdh_installcatalogs2
1 files changed, 1 insertions, 1 deletions
diff --git a/dh_installcatalogs b/dh_installcatalogs
index eef8cdeb..c020820c 100755
--- a/dh_installcatalogs
+++ b/dh_installcatalogs
@@ -74,7 +74,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) {
$fulldest =~ s|//|/|g; # beautification
if (! -d dirname($fulldest)) {
- doit("install","-d","-m755",dirname($dest));
+ doit("install","-d","-m755",$tmpdir."/".dirname($dest));
}
doit("install","-p","-m644",$source,$fulldest);