diff options
author | Dylan Noblesmith <[email protected]> | 2012-04-02 15:35:38 +0000 |
---|---|---|
committer | Dylan Noblesmith <[email protected]> | 2012-04-16 15:45:32 +0000 |
commit | a3d56734df2aaaf26d4405b0ecf8c5710148250e (patch) | |
tree | aa3498926f79761b257b3f9265159400102729cd /configure.ac | |
parent | 847c89870238fe5813e89831b38d5fab5356158c (diff) |
autoconf: add AM_PROG_CC_C_O
Prevents this error with Automake 1.9:
src/gallium/drivers/Makefile.am: C objects in subdir but
`AM_PROG_CC_C_O' not in `configure.ac'
autoreconf: automake failed with exit status: 1
Reviewed-by: Eric Anholt <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index df65ae5eda4..9d6cbeb96dc 100644 --- a/configure.ac +++ b/configure.ac @@ -49,6 +49,7 @@ dnl Check for progs AC_PROG_CPP AC_PROG_CC AC_PROG_CXX +AM_PROG_CC_C_O AC_CHECK_PROGS([MAKE], [gmake make]) AC_CHECK_PROGS([PYTHON2], [python2 python]) AC_PROG_SED |