|
Lines 1473-1497
install :: all install_koha set_koha_ownership set_koha_permissions warn_koha_en
Link Here
|
| 1473 |
unless exists $skip_directories->{$key}; |
1473 |
unless exists $skip_directories->{$key}; |
| 1474 |
} |
1474 |
} |
| 1475 |
} |
1475 |
} |
| 1476 |
# We can attempt some creative things with command line utils such as CACLS which allows permission |
1476 |
|
| 1477 |
|
|
|
| 1478 |
foreach my $key (sort keys %$target_directories) { |
| 1479 |
$install .= qq( |
| 1480 |
KOHA_INST_$key = blib/$key |
| 1481 |
KOHA_DEST_$key = $target_directories->{$key} |
| 1482 |
) unless exists $skip_directories->{$key}; |
| 1483 |
} |
| 1484 |
$install .= qq( |
| 1485 |
install :: all install_koha warn_koha_env_vars |
| 1486 |
\t\$(NOECHO) \$(NOOP) |
| 1487 |
); |
| 1488 |
$install .= "install_koha ::\n"; |
| 1489 |
$install .= "\t\$(MOD_INSTALL) \\\n"; |
| 1490 |
foreach my $key (sort keys %$target_directories) { |
| 1491 |
$install .= "\t\t\$(KOHA_INST_$key) \$(KOHA_DEST_$key) \\\n" |
| 1492 |
unless exists $skip_directories->{$key}; |
| 1493 |
} |
| 1494 |
|
| 1495 |
$install .= "\n"; |
1477 |
$install .= "\n"; |
| 1496 |
|
1478 |
|
| 1497 |
$install .= "warn_koha_env_vars ::\n"; |
1479 |
$install .= "warn_koha_env_vars ::\n"; |
| 1498 |
- |
|
|