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

(-)a/Makefile.PL (+4 lines)
Lines 694-699 my $pl_files = { Link Here
694
	  'fix-perl-path.PL' => [	# this script ensures the correct shebang line for the platform installed on...
694
	  'fix-perl-path.PL' => [	# this script ensures the correct shebang line for the platform installed on...
695
		 'blib'
695
		 'blib'
696
		 ],
696
		 ],
697
      'build-from-shared-tmpl.PL' => [
698
        'blib/OPAC_TMPL_DIR',
699
        'blib/INTRANET_TMPL_DIR'
700
       ],
697
};
701
};
698
702
699
push @{ $pl_files->{'rewrite-config.PL'} }, (
703
push @{ $pl_files->{'rewrite-config.PL'} }, (
(-)a/build-from-shared-tmpl.PL (+7 lines)
Line 0 Link Here
1
use strict;
2
use Modern::Perl;
3
use File::Copy::Recursive qw(dircopy);
4
5
my $basedir = (shift);
6
7
dircopy( './koha-tmpl/shared-tmpl', $basedir ) or die("$!\n");

Return to bug 35716