?
Current Path : /scripts/cpan_sandbox/x86_64/ |
Linux gator3171.hostgator.com 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 |
Current File : //scripts/cpan_sandbox/x86_64/xml2-config |
#!/usr/local/cpanel/3rdparty/bin/perl $ENV{'LANG'} = 'C'; my @paths = grep( !/cpan_sandbox/, split( /:/, $ENV{'PATH'} ) ); foreach my $path (@paths) { if ( -x $path . '/' . 'xml2-config' ) { if ( grep( /--libs/, @ARGV ) && -e '/usr/lib64' ) { print "-L/usr/lib64 "; } exec( $path . '/' . 'xml2-config', @ARGV ); } } die;