From 37eb31de9a5e55006f4bdaf4bbc9926b999692a7 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Tue, 26 Jun 2012 07:50:40 -0700 Subject: configure: fix double output of files No need to write out the Makefiles twice. Signed-off-by: Mike Frysinger Change-Id: I756e365875d578843b8fdebe92cae23c07788367 Reviewed-on: http://git-master/r/111407 Reviewed-by: Allen Martin Tested-by: Allen Martin --- configure.ac | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 3f5b8a1..6aebd33 100644 --- a/configure.ac +++ b/configure.ac @@ -4,7 +4,6 @@ AC_PREREQ([2.67]) AC_INIT([tegrarcm], [1.0], [amartin@nvidia.com]) AM_INIT_AUTOMAKE(tegrarcm, 1.0) -AC_OUTPUT(Makefile src/Makefile) AC_CONFIG_SRCDIR([src/main.c]) AC_CONFIG_HEADERS([config.h]) @@ -55,5 +54,8 @@ AC_FUNC_ERROR_AT_LINE AC_FUNC_MALLOC AC_CHECK_FUNCS([memset]) -#AC_CONFIG_FILES([Makefile]) +AC_CONFIG_FILES([ + Makefile + src/Makefile +]) AC_OUTPUT -- cgit v1.2.1