From 1f815b55a63db41908d7fcf382705764b6b6a8bb Mon Sep 17 00:00:00 2001 From: Gervase Markham Date: Mon, 10 Feb 2014 16:54:03 +0000 Subject: Fix problem of variables not being replaced in RTD documentation by removing references to them. r=LpSolit, a=justdave. https://bugzilla.mozilla.org/show_bug.cgi?id=964849 --- docs/makedocs.pl | 55 +------------------------------------------------------ 1 file changed, 1 insertion(+), 54 deletions(-) (limited to 'docs/makedocs.pl') diff --git a/docs/makedocs.pl b/docs/makedocs.pl index 2fc6721eb..d29a3fb91 100755 --- a/docs/makedocs.pl +++ b/docs/makedocs.pl @@ -46,64 +46,11 @@ if (eval { require Pod::Simple }) { $pod_simple = 1; }; -use Bugzilla::Install::Requirements - qw(REQUIRED_MODULES OPTIONAL_MODULES); -use Bugzilla::Constants qw(DB_MODULE BUGZILLA_VERSION); +use Bugzilla::Constants qw(BUGZILLA_VERSION); use File::Path qw(rmtree); use File::Which qw(which); -############################################################################### -# Generate minimum version list -############################################################################### - -my $modules = REQUIRED_MODULES; -my $opt_modules = OPTIONAL_MODULES; - -my $template; -{ - open(TEMPLATE, '<', 'definitions.rst.tmpl') - or die('Could not open definitions.rst.tmpl: ' . $!); - local $/; - $template =