diff options
author | Gaetan Nadon <memsize@videotron.ca> | 2010-07-21 16:07:00 -0400 |
---|---|---|
committer | Gaetan Nadon <memsize@videotron.ca> | 2010-07-21 16:07:00 -0400 |
commit | 2c9c7070abec4eb3fbf14f380dd1e57d63fdd720 (patch) | |
tree | fda247ed7cce13f5b0d19c59d91997e72da8c7c9 | |
parent | 68934cda27a0c2c051187f77c0d8faf82b9615f4 (diff) |
config: replace deprecated use of AC_OUTPUT with AC_CONFIG_FILES
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
-rw-r--r-- | configure.ac | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index 4780299..eee8e2f 100644 --- a/configure.ac +++ b/configure.ac @@ -86,8 +86,9 @@ AC_SUBST([moduledir]) DRIVER_NAME=i128 AC_SUBST([DRIVER_NAME]) -AC_OUTPUT([ - Makefile - src/Makefile - man/Makefile +AC_CONFIG_FILES([ + Makefile + src/Makefile + man/Makefile ]) +AC_OUTPUT |