diff options
author | Mike Frysinger <vapier@gentoo.org> | 2015-06-23 23:43:48 +0545 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2015-06-23 15:02:08 -0400 |
commit | 8d0978fb4bf62e760e7b50e59d5c58d30c059183 (patch) | |
tree | 42a8920fe3c63e09e4d3de2ee14b19ad355e63f6 /sim/configure.ac | |
parent | a38fe4feddd68b9c0aa082dd078c668ca9f06aae (diff) | |
download | gdb-8d0978fb4bf62e760e7b50e59d5c58d30c059183.zip gdb-8d0978fb4bf62e760e7b50e59d5c58d30c059183.tar.gz gdb-8d0978fb4bf62e760e7b50e59d5c58d30c059183.tar.bz2 |
sim: use AS_HELP_STRING everywhere
This helps standardize the configure --help output.
Diffstat (limited to 'sim/configure.ac')
-rw-r--r-- | sim/configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sim/configure.ac b/sim/configure.ac index f1734e3..39f9c6e 100644 --- a/sim/configure.ac +++ b/sim/configure.ac @@ -30,7 +30,7 @@ AC_SUBST(CFLAGS_FOR_BUILD) # If a cpu ever has more than one simulator to choose from, use # --enable-sim=... to choose. AC_ARG_ENABLE(sim, -[ --enable-sim ], +[AS_HELP_STRING([--enable-sim], [Enable the GNU simulator])], [case "${enableval}" in yes | no) ;; *) AC_MSG_ERROR(bad value ${enableval} given for --enable-sim option) ;; |