diff options
author | Ian Lance Taylor <ian@airs.com> | 1996-02-15 22:10:41 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1996-02-15 22:10:41 +0000 |
commit | 46bcd2ec35e4e800bc14f45692d568b51b6054ee (patch) | |
tree | cda445b587316c30ed5d407dab5082b61a84d304 /opcodes/configure.in | |
parent | f54c7482373d84e34fd1cd55d94e51358022ad8c (diff) | |
download | gdb-46bcd2ec35e4e800bc14f45692d568b51b6054ee.zip gdb-46bcd2ec35e4e800bc14f45692d568b51b6054ee.tar.gz gdb-46bcd2ec35e4e800bc14f45692d568b51b6054ee.tar.bz2 |
* configure.in: Call AC_PROG_CC before configure.host.
* configure: Rebuild.
Diffstat (limited to 'opcodes/configure.in')
-rw-r--r-- | opcodes/configure.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/opcodes/configure.in b/opcodes/configure.in index 74123dc..90ebe10 100644 --- a/opcodes/configure.in +++ b/opcodes/configure.in @@ -48,6 +48,7 @@ AC_CANONICAL_SYSTEM if test -z "$target" ; then AC_MSG_ERROR(Unrecognized target system type; please check config.sub.) fi +AC_ARG_PROGRAM # host-specific stuff: @@ -71,10 +72,10 @@ changequote([,])dnl fi fi +AC_PROG_CC + . ${srcdir}/../bfd/configure.host -AC_PROG_CC -AC_SUBST(CFLAGS) AC_SUBST(HDEFINES) AC_CHECK_PROG(AR, ar, ar, :) AC_PROG_RANLIB |