Skip to content

Commit e04fbe0

Browse files
authored
Merge pull request #10653 from luzpaz/typos/config
Fix typos in config subdirectory
2 parents b9e4c41 + 9f6596a commit e04fbe0

21 files changed

+30
-30
lines changed

config/extract-3rd-party-configure.pl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ ($)
120120
# AC_ARG_WITH (package, help-string, [action-if-given], [action-if-not-given])
121121
my @conf_keywords = ("AC_ARG_ENABLE", "AC_ARG_WITH");
122122

123-
# stack with funciton parameters: '(', ')'
123+
# stack with function parameters: '(', ')'
124124
my @the_stack = ();
125125
# push(@the_stack) / pop(@the_stack) / scalar(@the_stack)
126126
my $arg_num = 0;
@@ -151,7 +151,7 @@ ($)
151151
last;
152152
}
153153

154-
# Skip any option that contains a variable substition
154+
# Skip any option that contains a variable substitution
155155
if ( $option_name =~ /\$/ ) {
156156
if( !$list_only && !$quiet_arg) {
157157
print "# Warning: Skipped (embedded variable): $option_name\n";

config/oac_check_package.m4

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ dnl in the specified path.
5353
dnl 4. We try to find the specified header and function with no change
5454
dnl in CPPFLAGS or LDFLAGS and adding the specified libraries to LIBS.
5555
dnl
56-
dnl It is the resposibility of the caller to register arguments of the form
56+
dnl It is the responsibility of the caller to register arguments of the form
5757
dnl with-<package name>, with-<package name>-libdir, and with-package name>-incdir.
5858
dnl All three are optional, nothing will break if the caller doesn't specify them
5959
dnl (and indeed, if the package being searched for isn't libnl3, it's likely the
@@ -63,7 +63,7 @@ dnl By default, OAC_CHECK_PACKAGE will use <package name> for the module name to
6363
dnl to pkg-config, meaning there is a <package name>.pc in the filesystem. If a
6464
dnl different module name should be used, add a macro to the M4 environment named
6565
dnl <package name>_pkgconfig_module with the value of the pkgconfig module name
66-
dnl to use. For exmaple, if the libevent module name is libevent_core, you could
66+
dnl to use. For example, if the libevent module name is libevent_core, you could
6767
dnl specify:
6868
dnl
6969
dnl m4_define([libevent_pkgconfig_module], [libevent_core])
@@ -326,7 +326,7 @@ dnl Rarely, packages change linking or in some other way make it
326326
dnl difficult to determine all the correct arguments for
327327
dnl OAC_CHECK_PACKAGE in one try. The TM interface is a good example
328328
dnl of this, which has changed the name of the library (or its
329-
dnl dependencies) throughtout the years. Because OAC_CHECK_PACKAGE
329+
dnl dependencies) throughout the years. Because OAC_CHECK_PACKAGE
330330
dnl makes heavy use of caching (yay!), it is generally not useful to
331331
dnl call OAC_CHECK_PACKAGE multiple times with the same package name,
332332
dnl but different arguments. This macro may be expanded between calls
@@ -621,7 +621,7 @@ AC_DEFUN([_OAC_CHECK_PACKAGE_GENERIC_PREFIX], [
621621
AS_IF([test $? -eq 0],
622622
[check_package_generic_prefix_happy=1
623623
$2_LDFLAGS="-L${check_package_libdir}"
624-
AC_MSG_RESULT([foound])],
624+
AC_MSG_RESULT([found])],
625625
[AC_MSG_RESULT([not found])])],
626626
[check_package_generic_prefix_lib=0
627627
check_package_generic_prefix_lib64=0

config/ompi_find_mpi_aint_count_offset.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ AC_DEFUN([_OMPI_FIND_MPI_COUNT_TYPE], [
9595
# memory space, the scheme we use below may not work. ...but such
9696
# systems are pretty rare today.
9797

98-
MPI_COUNT_TYPE=unknonwn
98+
MPI_COUNT_TYPE=unknown
9999
AC_MSG_CHECKING([for type of MPI_Count])
100100
if test $ac_cv_sizeof_long_long -le $ac_cv_sizeof_size_t && \
101101
test $ac_cv_sizeof_long_long -ge $MPI_AINT_SIZE; then

config/ompi_fortran_check.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ dnl
3232
# - alignment
3333
# - associated C type
3434
#
35-
# types to search is a comma-seperated list of values
35+
# types to search is a comma-separated list of values
3636
AC_DEFUN([OMPI_FORTRAN_CHECK], [
3737
OPAL_VAR_SCOPE_PUSH([ofc_have_type ofc_type_size ofc_type_alignment ofc_c_type ofc_expected_size])
3838

config/ompi_fortran_find_module_include_flag.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ EOF
5454
cd ..
5555

5656
#
57-
# Now try to compile a simple program usinng that module, iterating
57+
# Now try to compile a simple program using that module, iterating
5858
# through the possible flags that the compiler might use
5959
#
6060

config/ompi_setup_fc.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ AC_DEFUN([OMPI_SETUP_FC],[
8181

8282
# OS X before 10.3 (deployment target) does not allow undefined common
8383
# symbols in shared libraries. Because we can't figure out how to
84-
# implement MPI_STATUSES_IGNORE and friends wihtout common symbols, on
84+
# implement MPI_STATUSES_IGNORE and friends without common symbols, on
8585
# OS X we can't build the F90 bindings as a shared library.
8686
OMPI_FORTRAN_EXTRA_SHARED_LIBRARY_FLAGS=
8787
AS_IF([test $ompi_fc_happy -eq 1],

config/ompi_setup_mpi_fortran.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ AC_DEFUN([OMPI_SETUP_MPI_FORTRAN],[
301301
#
302302
# ...and you can't have a "use..." statement before that (to get
303303
# the Fortran/C interop C_INTxx_T KIND values). So figure out
304-
# those KIND values here and just substitue them in via
304+
# those KIND values here and just substitute them in via
305305
# AC_DEFINE's. Kinda gross, but there you are. :-\
306306
OMPI_FORTRAN_GET_KIND_VALUE([C_INT16_T], 4, [OMPI_FORTRAN_C_INT16_T_KIND])
307307
OMPI_FORTRAN_GET_KIND_VALUE([C_INT32_T], 9, [OMPI_FORTRAN_C_INT32_T_KIND])

config/ompi_setup_prrte.m4

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ dnl Check for / configure PRRTE package. Prefer finding an external
3030
dnl PRRTE, build our internal one if required. If we can not find an
3131
dnl external PRRTE and the internal one fails to configure, abort.
3232
dnl
33-
dnl This macro wil change the environment in the following way:
33+
dnl This macro will change the environment in the following way:
3434
dnl
3535
dnl A Makefile conditional OMPI_WANT_PRRTE will be defined based on the
3636
dnl results of the build.
@@ -62,7 +62,7 @@ AC_DEFUN([OMPI_SETUP_PRRTE],[
6262
[prrte_setup_internal_happy=0])])
6363
6464
# if we have a pmix package and configure did not complete
65-
# successfullly (or wasn't started), then disable make dist.
65+
# successfully (or wasn't started), then disable make dist.
6666
AS_IF([test $prrte_setup_internal_happy != 1],
6767
[OPAL_MAKEDIST_DISABLE="$OPAL_MAKEDIST_DISABLE PRRTE"])])
6868

config/opal_case_sensitive_fs_setup.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ AC_ARG_WITH([cs_fs],
6464
[AS_HELP_STRING([--with-cs-fs],
6565
[Destination FS is case sensitive (default: set to value of the build FS's case sensitivity)])])
6666
67-
dnl Stupid emacs syntax hilighting: '
67+
dnl Stupid emacs syntax highlighting: '
6868

6969
if test "$with_cs_fs" = "yes"; then
7070
OPAL_WANT_CS_FS=1

config/opal_check_knem.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ AC_DEFUN([OPAL_CHECK_KNEM],[
3939

4040
# need at least version 0x0000000b
4141
AS_IF([test "$opal_check_knem_happy" = "yes"],
42-
[AC_CACHE_CHECK([for recent vesion of knem ABI],
42+
[AC_CACHE_CHECK([for recent version of knem ABI],
4343
[opal_check_knem_cv_abi_version],
4444
[AC_PREPROC_IFELSE([AC_LANG_PROGRAM([[
4545
#include <knem_io.h>

0 commit comments

Comments
 (0)