9 if (/INSTALLDIR_AUTOREPLACE/) {
10 $_=qq{our \$installdir="\Q$prefix\E";};
12 elsif (/VERSION_AUTOREPLACE/) {
13 $_=qq{our \$version="\Q$ver\E";};
15 elsif (/^(?:use FindBin; *)?use lib/) {
16 # The idea here is to figure out if the libdir the Makefile.PL
17 # was configured to use is in perl's normal search path.
18 # If not, hard code it into ikiwiki.
19 if ((grep { $_ eq $libdir } @INC) &&
20 (! exists $ENV{PERL5LIB} || ! length $ENV{PERL5LIB} ||
21 $ENV{PERL5LIB} ne $libdir)) {
25 $_="use lib \"\Q$libdir\E\";\n";
28 elsif ($. == 1 && ($ENV{NOTAINT}=0) && m{^(#!.*perl.*?)$}) {
31 elsif (/^\$ENV\{PATH}="(.*)";/) {
32 $_="\$ENV{PATH}=\"\Q$1\E:\Q$prefix\E/bin\";\n";