From 00c4e3e529740989b3a7013d78fee0377a7bfbaa Mon Sep 17 00:00:00 2001 From: stan Date: Wed, 15 Jan 2003 15:02:45 +0000 Subject: [PATCH] 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 --- zmconfig.pl.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/zmconfig.pl.in b/zmconfig.pl.in index e44ed447d..4dc1552c2 100755 --- a/zmconfig.pl.in +++ b/zmconfig.pl.in @@ -80,7 +80,7 @@ my $bindir = "${exec_prefix}/bin"; my @options = ( { - name => "ZM_PATH", + name => "ZM_PATH_BIN", default => "$bindir", 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." @@ -88,7 +88,7 @@ my @options = readonly => 1, }, { - name => "ZM_WEB_PATH", + name => "ZM_PATH_WEB", default => "@WEB_PREFIX@", 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." @@ -96,7 +96,7 @@ my @options = readonly => 1, }, { - name => "ZM_CGI_PATH", + name => "ZM_PATH_CGI", default => "@CGI_PREFIX@", 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."