View | Details | Raw Unified | Return to bug 8742
Collapse All | Expand All

(-)a/Makefile.PL (-2 / +2 lines)
Lines 1349-1354 sub _add_destdir { Link Here
1349
sub display_configuration {
1349
sub display_configuration {
1350
    my $config = shift;
1350
    my $config = shift;
1351
    my $dirmap = shift;
1351
    my $dirmap = shift;
1352
    my @version = grep /\/usr\/share\/perl\//, @INC || ('/usr/share/perl/5.10');
1352
    print "\n\nKoha will be installed with the following configuration parameters:\n\n";
1353
    print "\n\nKoha will be installed with the following configuration parameters:\n\n";
1353
    foreach my $key (sort keys %$config) {
1354
    foreach my $key (sort keys %$config) {
1354
        print sprintf("%-25.25s%s\n", $key, $config->{$key});
1355
        print sprintf("%-25.25s%s\n", $key, $config->{$key});
Lines 1361-1367 sub display_configuration { Link Here
1361
    print "\n\nTo change any configuration setting, please run\n";
1362
    print "\n\nTo change any configuration setting, please run\n";
1362
    print "perl Makefile.PL again.  To override one of the target\n";
1363
    print "perl Makefile.PL again.  To override one of the target\n";
1363
    print "directories, you can do so on the command line like this:\n";
1364
    print "directories, you can do so on the command line like this:\n";
1364
    print "\nperl Makefile.PL PERL_MODULE_DIR=/usr/share/perl/5.8\n\n";
1365
    print "\nperl Makefile.PL PERL_MODULE_DIR=$version[0]\n\n";
1365
    print "You can also set different default values for parameters\n";
1366
    print "You can also set different default values for parameters\n";
1366
    print "or override directory locations by using environment variables.\n";
1367
    print "or override directory locations by using environment variables.\n";
1367
    print "\nFor example:\n\n";
1368
    print "\nFor example:\n\n";
1368
- 

Return to bug 8742