Changed path options slightly so PATH bit is first.
git-svn-id: http://svn.zoneminder.com/svn/zm/trunk@333 e3e1d417-86f3-4887-817a-d78f3d33393f
This commit is contained in:
parent
1ed344713e
commit
00c4e3e529
|
@ -80,7 +80,7 @@ my $bindir = "${exec_prefix}/bin";
|
||||||
my @options =
|
my @options =
|
||||||
(
|
(
|
||||||
{
|
{
|
||||||
name => "ZM_PATH",
|
name => "ZM_PATH_BIN",
|
||||||
default => "$bindir",
|
default => "$bindir",
|
||||||
description => "Path to the ZoneMinder executables, autogenerated do not change",
|
description => "Path to the ZoneMinder executables, autogenerated do not change",
|
||||||
help => "The path where the ZoneMinder executables are installed is set at configure time. This is a readonly option for the purposes of distributing this information around the various binaries and scripts that need to know it. Changing this option here will tend to break things. Instead re-run configure to regenerate the path."
|
help => "The path where the ZoneMinder executables are installed is set at configure time. This is a readonly option for the purposes of distributing this information around the various binaries and scripts that need to know it. Changing this option here will tend to break things. Instead re-run configure to regenerate the path."
|
||||||
|
@ -88,7 +88,7 @@ my @options =
|
||||||
readonly => 1,
|
readonly => 1,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name => "ZM_WEB_PATH",
|
name => "ZM_PATH_WEB",
|
||||||
default => "@WEB_PREFIX@",
|
default => "@WEB_PREFIX@",
|
||||||
description => "Path to the ZoneMinder web files, autogenerated do not change",
|
description => "Path to the ZoneMinder web files, autogenerated do not change",
|
||||||
help => "The path where the ZoneMinder web files are installed is set at configure time. This is a readonly option for the purposes of distributing this information around the various binaries and scripts that need to know it. Changing this option here will tend to break things. Instead re-run configure to regenerate the path."
|
help => "The path where the ZoneMinder web files are installed is set at configure time. This is a readonly option for the purposes of distributing this information around the various binaries and scripts that need to know it. Changing this option here will tend to break things. Instead re-run configure to regenerate the path."
|
||||||
|
@ -96,7 +96,7 @@ my @options =
|
||||||
readonly => 1,
|
readonly => 1,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name => "ZM_CGI_PATH",
|
name => "ZM_PATH_CGI",
|
||||||
default => "@CGI_PREFIX@",
|
default => "@CGI_PREFIX@",
|
||||||
description => "Path to the ZoneMinder cgi files, autogenerated do not change",
|
description => "Path to the ZoneMinder cgi files, autogenerated do not change",
|
||||||
help => "The path where the ZoneMinder cgi files are installed is set at configure time. This is a readonly option for the purposes of distributing this information around the various binaries and scripts that need to know it. Changing this option here will tend to break things. Instead re-run configure to regenerate the path."
|
help => "The path where the ZoneMinder cgi files are installed is set at configure time. This is a readonly option for the purposes of distributing this information around the various binaries and scripts that need to know it. Changing this option here will tend to break things. Instead re-run configure to regenerate the path."
|
||||||
|
|
Loading…
Reference in New Issue