From e4064acea4ae144cbf3bfcaaff0ef9c4b8537a28 Mon Sep 17 00:00:00 2001 From: "Kyle J. McKay" Date: Mon, 30 Nov 2020 22:35:53 -0700 Subject: [PATCH] install.sh: make cgiroot available as installation substitution Add $Girocco::Config::cgiroot to the list of substitutions that are made when installing various scripts. Scripts that do not need access to the entire shlib.sh repertoire can run just that much little bit faster if all they need has been substituted during installation. Signed-off-by: Kyle J. McKay --- install.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/install.sh b/install.sh index d19167b..1dc3ce0 100755 --- a/install.sh +++ b/install.sh @@ -711,6 +711,7 @@ perl -I"$PWD" -M$GIROCCO_CONF -i -p \ -e 's/(?<=")\@basedir\@/$Girocco::Config::basedir/g;' \ -e 's/__BASE''DIR__/$Girocco::Config::basedir/g;' \ -e 's/\@reporoot\@/"$Girocco::Config::reporoot"/g;' \ + -e 's/\@cgiroot\@/"$Girocco::Config::cgiroot"/g;' \ -e 's/\@shbin\@/"$ENV{SHBIN}"/g;' \ -e 's/\@perlbin\@/"$ENV{PERLBIN}"/g;' \ -e 's/\@jailreporoot\@/"$Girocco::Config::jailreporoot"/g;' \ -- 2.11.4.GIT