diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2011-01-07 19:19:22 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2011-01-07 19:19:22 -0800 |
commit | e6e427bbf6f3c9472dcbff1028fded459c803d6e (patch) | |
tree | 44a8007500ba0adb434ccae2612068eb7c08eca0 | |
parent | 6e44c0f269a5f2dced84e7ab3c496605d827ec11 (diff) |
config: Replace obsolete usage of AC_OUTPUT with AC_CONFIG_FILES
Stops configure from running the output generation routines twice
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r-- | configure.ac | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 7650249..a6ae5ba 100644 --- a/configure.ac +++ b/configure.ac @@ -202,5 +202,6 @@ AC_SUBST(XAUTH) AC_SUBST(XINIT) AC_SUBST(XINITDIR) -AC_OUTPUT([Makefile]) -AC_OUTPUT([privileged_startx/Makefile]) +AC_CONFIG_FILES([Makefile]) +AC_CONFIG_FILES([privileged_startx/Makefile]) +AC_OUTPUT |