fixeria has submitted this change. ( https://gerrit.osmocom.org/c/gapk/+/28934 )
Change subject: configure: fix warning: AC_OUTPUT should be used without arguments ......................................................................
configure: fix warning: AC_OUTPUT should be used without arguments
Change-Id: I32b07f8f8c3f4092683fa6a25a7e895f188640b7 --- M configure.ac 1 file changed, 10 insertions(+), 11 deletions(-)
Approvals: Jenkins Builder: Verified pespin: Looks good to me, but someone else must approve daniel: Looks good to me, approved
diff --git a/configure.ac b/configure.ac index b16acc8..ad659ca 100644 --- a/configure.ac +++ b/configure.ac @@ -15,16 +15,6 @@ AC_CONFIG_HEADERS([config.h]) AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_TESTDIR(tests) -AC_CONFIG_FILES([ - Makefile - src/Makefile - libgsmhr/Makefile - include/Makefile - include/gsmhr/Makefile - libosmogapk.pc - tests/atlocal - tests/Makefile -])
# Options AC_ARG_ENABLE(gsmhr, @@ -117,4 +107,13 @@ AC_FUNC_MALLOC AC_CHECK_FUNCS([memset])
-AC_OUTPUT([contrib/gapk.spec]) +AC_CONFIG_FILES([contrib/gapk.spec + Makefile + src/Makefile + libgsmhr/Makefile + include/Makefile + include/gsmhr/Makefile + libosmogapk.pc + tests/atlocal + tests/Makefile]) +AC_OUTPUT