diff options
author | joey <joey> | 2003-10-29 23:15:11 +0000 |
---|---|---|
committer | joey <joey> | 2003-10-29 23:15:11 +0000 |
commit | 9f776f9407fac13e2804f3e408a0e96b4bdd8b59 (patch) | |
tree | 4ac62e9933781b0f945c9435c7a5780e361f059f | |
parent | 840db956a506e306b7486b3fbfe75a54276f1367 (diff) | |
download | debhelper-9f776f9407fac13e2804f3e408a0e96b4bdd8b59.tar.gz |
r1620: * dh_installcatalogs: Fixed to create dir in tmpdir. Closes: #218237version_4.1.78
-rwxr-xr-x | dh_installcatalogs | 2 |
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); |