aboutsummaryrefslogtreecommitdiff
path: root/bfd/configure.in
diff options
context:
space:
mode:
authorKen Raeburn <raeburn@cygnus>1995-07-05 09:38:09 +0000
committerKen Raeburn <raeburn@cygnus>1995-07-05 09:38:09 +0000
commite818c22e1bff1a9e954700303b18948244edaa32 (patch)
treeecc061016818af7baccd04aa46fc0782a911168a /bfd/configure.in
parent8c69366021de6fa59797df1c3223981072cc9f32 (diff)
downloadgdb-e818c22e1bff1a9e954700303b18948244edaa32.zip
gdb-e818c22e1bff1a9e954700303b18948244edaa32.tar.gz
gdb-e818c22e1bff1a9e954700303b18948244edaa32.tar.bz2
fix usage message on --enable options
Diffstat (limited to 'bfd/configure.in')
-rw-r--r--bfd/configure.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/bfd/configure.in b/bfd/configure.in
index 1d345b2..2a3f45d 100644
--- a/bfd/configure.in
+++ b/bfd/configure.in
@@ -2,14 +2,14 @@ AC_PREREQ(2.3)
AC_INIT(libbfd.c)
AC_ARG_ENABLE(64-bit-bfd,
-[ 64-bit-bfd 64-bit support (on hosts with narrower word sizes)],
+[ --enable-64-bit-bfd 64-bit support (on hosts with narrower word sizes)],
[case "{$enableval}" in
yes) want64=true ;;
no) want64=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for 64-bit-bfd option) ;;
esac],[want64=false])dnl
AC_ARG_ENABLE(targets,
-[ targets alternative target configurations besides the primary],
+[ --enable-targets alternative target configurations],
[case "${enableval}" in
yes | "") AC_ERROR(enable-targets option must specify target names or 'all')
;;