diff options
author | Alan Coopersmith <alan.coopersmith@sun.com> | 2007-06-28 23:30:35 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@sun.com> | 2007-06-28 23:30:35 -0700 |
commit | 6503eb45023d0db9a94cb9d1e14a26af07a6628d (patch) | |
tree | e4f1f2048c4fe9e096731573a1947747df063428 | |
parent | 5257e36f502676fd6a44bbb8e747d9138ed3bc5c (diff) |
Add AM_PROG_CC_C_O to configure.ac
Clears automake-1.10 warning: src/bios_reader/Makefile.am:8: compiling
`bios_dumper.c' with per-target flags requires `AM_PROG_CC_C_O' in
`configure.ac'
-rw-r--r-- | configure.ac | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 51203fe6..a39635e5 100644 --- a/configure.ac +++ b/configure.ac @@ -48,6 +48,7 @@ AM_MAINTAINER_MODE AC_DISABLE_STATIC AC_PROG_LIBTOOL AC_PROG_CC +AM_PROG_CC_C_O AC_CHECK_PROG(gen4asm, [intel-gen4asm], yes, no) AM_CONDITIONAL(HAVE_GEN4ASM, test x$gen4asm = xyes) |