From 5978e3f9925313e6f2649170a2d61faa1b9ad988 Mon Sep 17 00:00:00 2001 Message-Id: <5978e3f9925313e6f2649170a2d61faa1b9ad988.1715211007.git.mdw@distorted.org.uk> From: Mark Wooding Date: Thu, 31 Dec 2015 20:52:00 +0000 Subject: [PATCH] scripts/sedfiles.make, doc/disorder.cgi.8.in: Say where the file is. Organization: Straylight/Edgeware From: Mark Wooding The manpage used to say that the Makefile doesn't install the CGI program anywhere, which hasn't been true for a while. Remove the old lies and just say where it was put. --- doc/disorder.cgi.8.in | 5 +---- scripts/sedfiles.make | 1 + 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/doc/disorder.cgi.8.in b/doc/disorder.cgi.8.in index 45ef8ab..be4c8ec 100644 --- a/doc/disorder.cgi.8.in +++ b/doc/disorder.cgi.8.in @@ -34,10 +34,7 @@ See \fBdisorder_options\fR(5) for CGI-specific configuration and .PP See \fBdisorder_templates\fR(5) for the template language used. .SH "WHERE IS IT?" -The DisOrder makefiles don't know where to install the CGI, or indeed -whether you wanted it installed, so they do not install it at all. -You must copy it into the right location according to your web -server's configuration. +The DisOrder makefiles installed it in \fBcgiexecdir\fR. .SH "SEE ALSO" .BR disorder_config (5), .BR disorder_options (5), diff --git a/scripts/sedfiles.make b/scripts/sedfiles.make index a02e753..f0cb633 100644 --- a/scripts/sedfiles.make +++ b/scripts/sedfiles.make @@ -24,6 +24,7 @@ $(SEDFILES) : % : %.in Makefile -e 's!pkgstatedir!${localstatedir}/disorder!g;' \ -e 's!pkgdatadir!${pkgdatadir}!g;' \ -e 's!dochtmldir!${dochtmldir}!g;' \ + -e 's!cgiexecdir!${cgiexecdir}!g;' \ -e 's!SENDMAIL!${SENDMAIL}!g;' \ -e 's!_version_!${VERSION}!g;' \ < $< > $@.new -- [mdw]