diff options
Diffstat (limited to 'openmp/runtime/tools/lib/Uname.pm')
-rw-r--r-- | openmp/runtime/tools/lib/Uname.pm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/openmp/runtime/tools/lib/Uname.pm b/openmp/runtime/tools/lib/Uname.pm index 9556884cfbd..4eb6991f273 100644 --- a/openmp/runtime/tools/lib/Uname.pm +++ b/openmp/runtime/tools/lib/Uname.pm @@ -58,7 +58,7 @@ my @aux = qw{ host_name domain_name }, map( "operating_system_$_", qw{ name release codename description } ) ); - # Auxillary properties. + # Auxiliary properties. my @all = ( @base, @aux ); # All the properties. my @meta = qw{ base_names all_names value }; @@ -209,7 +209,7 @@ if ( 0 ) { if ( 0 ) { } elsif ( $values{ kernel_name } eq "Linux" ) { $values{ operating_system } = "GNU/Linux"; - my $release; # Name of choosen "*-release" file. + my $release; # Name of chosen "*-release" file. my $bulk; # Content of release file. # On Ubuntu, lsb-release is quite informative, e. g.: # DISTRIB_ID=Ubuntu @@ -454,7 +454,7 @@ C</bin/uname> and C<POSIX::uname()>. $hardware_platform = Uname::hardware_platform(); $operating_system = Uname::operating_system(); - # Auxillary property functions. + # Auxiliary property functions. $host_name = Uname::host_name(); $domain_name = Uname::domain_name(); $os_name = Uname::operating_system_name(); @@ -547,11 +547,11 @@ One of: C<GNU/Linux>, C<OS X*>, or C<MS Windows>. =back -=head2 Auxillary Functions +=head2 Auxiliary Functions -Auxillary functions extends base functions with information not reported by C<uname> program. +Auxiliary functions extends base functions with information not reported by C<uname> program. -Auxillary functions collect information from different sources. For example, on OS X*, they may +Auxiliary functions collect information from different sources. For example, on OS X*, they may call C<sw_vers> program to find out OS release; on Linux* OS they may parse C</etc/redhat-release> file, etc. |