Files
pcas/src/cap5/perlConfig.pl
Andrew Johnson 451c4cc854 Unify #! line for Perl scripts
/usr/bin/env exists on all current workstation OSs.
2013-01-23 07:29:07 -06:00

10 lines
206 B
Perl

#!/usr/bin/env 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};