]> git.donarmstrong.com Git - debhelper.git/commitdiff
r1620: * dh_installcatalogs: Fixed to create dir in tmpdir. Closes: #218237 version_4.1.78
authorjoey <joey>
Wed, 29 Oct 2003 23:15:11 +0000 (23:15 +0000)
committerjoey <joey>
Wed, 29 Oct 2003 23:15:11 +0000 (23:15 +0000)
dh_installcatalogs

index eef8cdeb376a971279c1fb20a602cf08f9a980f2..c020820cd0d4696f4b4c364004651c0eef036571 100755 (executable)
@@ -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);