Die on building website if the man pages are missing. This happens if the Tor sandbox defined in Makefile doesn't exist.
Roger Dingledine

Roger Dingledine commited on 2006-08-23 05:38:26
Zeige 2 geänderte Dateien mit 2 Einfügungen und 0 Löschungen.

... ...
@@ -6,6 +6,7 @@
6 6
 <div class="main-column">
7 7
 
8 8
 <:
9
+	die "Missing manpage" unless -f "$(TORCVSHEAD)/doc/tor.1.in";
9 10
 	my $man = `man2html -M '' $(TORCVSHEAD)/doc/tor.1.in`;
10 11
 	die "No manpage" unless $man;
11 12
 
... ...
@@ -6,6 +6,7 @@
6 6
 <div class="main-column">
7 7
 
8 8
 <:
9
+	die "Missing manpage" unless -f "$(TORCVSSTABLE)/doc/tor.1.in";
9 10
 	my $man = `man2html -M '' $(TORCVSSTABLE)/doc/tor.1.in`;
10 11
 	die "No manpage" unless $man;
11 12
 
12 13