diff options
author | Ian Lance Taylor <ian@airs.com> | 1996-04-08 18:01:49 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1996-04-08 18:01:49 +0000 |
commit | 639b5a093c63495a610703b69615b35b4748418f (patch) | |
tree | baef416dc3f2af797a9897797bf7c7dcff2251db /opcodes/configure.in | |
parent | 6f21f2e3077c3f10fb876c8747348176717d622c (diff) | |
download | gdb-639b5a093c63495a610703b69615b35b4748418f.zip gdb-639b5a093c63495a610703b69615b35b4748418f.tar.gz gdb-639b5a093c63495a610703b69615b35b4748418f.tar.bz2 |
* configure.in: Permit --enable-shared to specify a list of
directories.
* configure: Rebuild.
Diffstat (limited to 'opcodes/configure.in')
-rw-r--r-- | opcodes/configure.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/opcodes/configure.in b/opcodes/configure.in index d4ff51c..9aed7fe 100644 --- a/opcodes/configure.in +++ b/opcodes/configure.in @@ -31,7 +31,8 @@ AC_ARG_ENABLE(shared, [case "${enableval}" in yes) shared=true ;; no) shared=false ;; - *) AC_MSG_ERROR([bad value ${enableval} for opcodes shared option]) ;; + *opcodes*) shared=true ;; + *) shared=false ;; esac])dnl AC_ARG_ENABLE(commonbfdlib, [ --enable-commonbfdlib build shared BFD/opcodes/libiberty library], |