Skip to content

Commit

Permalink
Corrected bad pathing for default Perl base dir. Default now matches …
Browse files Browse the repository at this point in the history
…Debian Perl.

Signed-off-by: Chris Cormack <crc@liblime.com>
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
  • Loading branch information
cnighswonger authored and Joshua Ferraro committed Nov 22, 2007
1 parent 3b17b75 commit 8a5e2f2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion rewrite-config.PL
Expand Up @@ -71,7 +71,8 @@ $prefix = $ENV{'PREFIX'} || "/usr";
# Keys were extracted by
# <grep -o '__.*__' etc/* | cut -f2 -d: | sort -u | sed -e 's/^/ "/;s/$/" => "",/'
%configuration = (
"__BASE_DIR__" => ($ENV{'INSTALLSITELIB'} || sprintf($prefix."/lib/perl5/site_perl/%vd",$^V))."/koha",
"__BASE_DIR__" => ($ENV{'INSTALLSITELIB'} || sprintf($prefix."/local/lib/perl/%vd",$^V))."/koha",
# Corrected to match Debian Perl req's.... -fbcit
"__CGI_DIR__" => $prefix."/lib/cgi-bin/koha",
"__LOG_DIR__" => "/var/log",
"__DB_TYPE__" => "mysql",
Expand Down

0 comments on commit 8a5e2f2

Please sign in to comment.