fix usage message on --enable options
authorKen Raeburn <raeburn@cygnus>
Wed, 5 Jul 1995 09:38:09 +0000 (09:38 +0000)
committerKen Raeburn <raeburn@cygnus>
Wed, 5 Jul 1995 09:38:09 +0000 (09:38 +0000)
bfd/configure
bfd/configure.in

index a18b23f6449949e2eac2553131bf1dbf13a7fa41..43b20d1ba23729eb49e271b5402303edcb0a4e10 100755 (executable)
@@ -12,9 +12,9 @@ ac_help=
 ac_default_prefix=/usr/local
 # Any additions from configure.in:
 ac_help="$ac_help
-    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)"
 ac_help="$ac_help
-    targets            alternative target configurations besides the primary"
+  --enable-targets        alternative target configurations"
 
 # Initialize some variables set by options.
 # The variables have the same names as the options, with
index 1d345b23dbc49a3a6924af14974081bc9759320a..2a3f45dcde58fd886b4c09a1b8ae0c5489b08efd 100644 (file)
@@ -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')
             ;;
This page took 0.029007 seconds and 4 git commands to generate.