Files
pcas/src/cap5/perlConfig.pl
2008-06-27 22:19:30 +00:00

10 lines
202 B
Perl

#!/usr/bin/perl
# This script is used to extract information about the Perl build
# configuration, so the EPICS build system uses the same settings.
use Config;
my $arg = shift;
print $Config{$arg};