You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-tex/latex2html/files/latex2html-destdir.patch

16 lines
703 B

Index: latex2html-2008/config/install.pl
===================================================================
--- latex2html-2008.orig/config/install.pl
+++ latex2html-2008/config/install.pl
@@ -372,7 +372,9 @@ foreach $item (sort keys %Install_items)
if($cfg{TEXPATH}) {
print "\nNote: trying to install LaTeX2HTML style files in TeX directory tree\n ($cfg{TEXPATH})\n";
- unless(mkpath($cfg{TEXPATH})) {
+ my $destdir = $cfg{TEXPATH};
+ $destdir = $ENV{'DESTDIR'}.$destdir if($ENV{'DESTDIR'});
+ unless(mkpath($destdir)) {
#my $testpath = $cfg{TEXPATH}; # to strip (latex2)html
#$testpath =~ s/[$dd$dd][^$dd$dd]*$//;
#if((-d $cfg{TEXPATH} && !-w _) || (-d $testpath && !-w _)) {