mirror of
https://github.com/nasa/trick.git
synced 2024-12-18 20:57:55 +00:00
eed8837478
RedHat systems use a libexec directory, MacOSX and Ubuntu use lib. Changed our scripts and makefiles to handle both. refs #63
10 lines
158 B
Perl
Executable File
10 lines
158 B
Perl
Executable File
#!/usr/bin/perl
|
|
|
|
use FindBin qw($RealBin);
|
|
use lib ("$RealBin/../libexec/trick/pm", "$RealBin/../lib/trick/pm") ;
|
|
use gte ;
|
|
use strict ;
|
|
|
|
print gte(@ARGV) ;
|
|
|