diff options
author | Luke Dashjr <luke-jr+git@utopios.org> | 2018-07-27 17:21:45 +0000 |
---|---|---|
committer | Luke Dashjr <luke-jr+git@utopios.org> | 2018-07-28 19:33:37 +0000 |
commit | d8ab8dc12db14cd206c61fb5d30a6a130160d9b9 (patch) | |
tree | 136bb177bc3ca308019b764bbe94b1e3dd604790 /configure.ac | |
parent | ef4fac0ea5b4891f4529e4b59dfd1f7aeb3009b5 (diff) |
configure: Invert --enable-asm help string since default is now enabled
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 5851413cf4..080082f316 100644 --- a/configure.ac +++ b/configure.ac @@ -183,8 +183,8 @@ AC_ARG_ENABLE([glibc-back-compat], [use_glibc_compat=no]) AC_ARG_ENABLE([asm], - [AS_HELP_STRING([--enable-asm], - [Enable assembly routines (default is yes)])], + [AS_HELP_STRING([--disable-asm], + [disable assembly routines (enabled by default)])], [use_asm=$enableval], [use_asm=yes]) |