diff options
author | Jeremy Henty <onepoint@starurchin.org> | 2010-12-06 07:51:29 +0000 |
---|---|---|
committer | Jeremy Henty <onepoint@starurchin.org> | 2010-12-06 07:51:29 +0000 |
commit | d1c349551e4e6cb03da438748633740e2fb93d88 (patch) | |
tree | bd9f9342a58552c83a2eb2e640ade330453913f7 | |
parent | 385add51262032e88d63d5650095ce788847166d (diff) |
configure.in: fix the obsolete usage of AC_OUTPUT.
-rw-r--r-- | configure.in | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/configure.in b/configure.in index a7fef723..5204beed 100644 --- a/configure.in +++ b/configure.in @@ -511,5 +511,18 @@ AC_SUBST(LIBFLTK_LIBS) AC_SUBST(LIBICONV_LIBS) AC_SUBST(datadir) -AC_OUTPUT(Makefile dlib/Makefile dpip/Makefile dpid/Makefile dpi/Makefile doc/Makefile dw/Makefile lout/Makefile src/Makefile src/IO/Makefile test/Makefile) - +AC_CONFIG_FILES([ + Makefile + dlib/Makefile + dpip/Makefile + dpid/Makefile + dpi/Makefile + doc/Makefile + dw/Makefile + lout/Makefile + src/Makefile + src/IO/Makefile + test/Makefile +]) + +AC_OUTPUT |