Workshop o mikrokontrolérech na SKSP 2024.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
699 B

2 months ago
# UCW Library configuration system: Perl paths
# (c) 2017 Martin Mares <mj@ucw.cz>
package UCW::Configure::Perl;
use UCW::Configure;
use strict;
use warnings;
use Config;
Log "Determining Perl module path ... ";
my $prefix = $Config{installprefix};
$prefix .= '/' unless $prefix =~ m{/$};
my $lib = substr($Config{installvendorlib}, length $prefix);
Set('INSTALL_PERL_DIR', Get('INSTALL_USR_PREFIX') . $lib);
Log Get('INSTALL_PERL_DIR') . "\n";
Log "Determining Perl arch-dependent module path ... ";
my $archlib = substr($Config{installvendorarch}, length $prefix);
Set('INSTALL_PERL_ARCH_DIR', Get('INSTALL_USR_PREFIX') . $archlib);
Log Get('INSTALL_PERL_ARCH_DIR') . "\n";
# We succeeded
1;