mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
7d6f9b0376
previous commit.
17 lines
617 B
Plaintext
17 lines
617 B
Plaintext
--- bkmrkconv.pl Thu Mar 23 09:22:20 2000
|
|
+++ bkmrkconv.pl.new Thu Mar 23 09:25:54 2000
|
|
@@ -70,9 +70,10 @@
|
|
|
|
chomp(my $oldcwd = `pwd`);
|
|
chdir $outputDir;
|
|
-my $rootpage = &readFile("src/rootpage.html");
|
|
-my $linkspage = &readFile("src/linkspage.html");
|
|
-my $contentspage = &readFile("src/contentspage.html") if ($doContents);
|
|
+my $shareDir = '/usr/local/share/bkmrkconv';
|
|
+my $rootpage = &readFile("$shareDir/src/rootpage.html");
|
|
+my $linkspage = &readFile("$shareDir/src/linkspage.html");
|
|
+my $contentspage = &readFile("$shareDir/src/contentspage.html") if ($doContents);
|
|
chdir $oldcwd;
|
|
|
|
my %root;
|