aboutsummaryrefslogtreecommitdiffstats
path: root/erts
diff options
context:
space:
mode:
authorLukas Larsson <[email protected]>2014-09-10 11:32:29 +0200
committerLukas Larsson <[email protected]>2014-09-10 11:32:29 +0200
commita61e5a8f18ff0cb93adc9858cb8a7ca1bc6f8e1f (patch)
tree52a00daf1e9297d34d2768493ce8f5d91a1d219a /erts
parent89aa1c791f9a6775b4d452f7725791dbdcbc3876 (diff)
parentdaa9e1a0d97612f6689685e5a597375ceb9e7b81 (diff)
downloadotp-a61e5a8f18ff0cb93adc9858cb8a7ca1bc6f8e1f.tar.gz
otp-a61e5a8f18ff0cb93adc9858cb8a7ca1bc6f8e1f.tar.bz2
otp-a61e5a8f18ff0cb93adc9858cb8a7ca1bc6f8e1f.zip
Merge branch 'maint'
* maint: Fix some spelling misstakes
Diffstat (limited to 'erts')
-rw-r--r--erts/configure.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/erts/configure.in b/erts/configure.in
index 40b335849c..c8b96c50f0 100644
--- a/erts/configure.in
+++ b/erts/configure.in
@@ -446,13 +446,13 @@ else
fi
AC_ARG_ENABLE(static-nifs,
-AS_HELP_STRING([--enable-static-nifs], [link nifs statically. If yes then all nifs in all Erlang/OTP applications will be statically linked into the main binary. It is also possible to give a list of nifs that should be linked statically. The list should be a comma seperated and contain the absolute path to a .a archive for each nif that is to be statically linked. The name of the .a archive has to be the same as the name of the nif. Note that you have to link any external dependencies that the nifs have to the main binary, so for the crypto nif you want to pass LIBS=-lcrypto to configure.]),
+AS_HELP_STRING([--enable-static-nifs], [link nifs statically. If yes then all nifs in all Erlang/OTP applications will be statically linked into the main binary. It is also possible to give a list of nifs that should be linked statically. The list should be a comma separated and contain the absolute path to a .a archive for each nif that is to be statically linked. The name of the .a archive has to be the same as the name of the nif. Note that you have to link any external dependencies that the nifs have to the main binary, so for the crypto nif you want to pass LIBS=-lcrypto to configure.]),
STATIC_NIFS="$enableval",
STATIC_NIFS=no)
AC_SUBST(STATIC_NIFS)
AC_ARG_ENABLE(static-drivers,
-AS_HELP_STRING([--enable-static-drivers], [comma seperated list of linked-in drivers to link statically with the main binary. The list should contain the absolute path to a .a archive for each driver that is to be statically linked. The name of the .a archive has to be the same as the name of the driver.]),
+AS_HELP_STRING([--enable-static-drivers], [comma separated list of linked-in drivers to link statically with the main binary. The list should contain the absolute path to a .a archive for each driver that is to be statically linked. The name of the .a archive has to be the same as the name of the driver.]),
STATIC_DRIVERS="$enableval",
STATIC_DRIVERS=no)
AC_SUBST(STATIC_DRIVERS)