aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVadim Yanitskiy <vyanitskiy@sysmocom.de>2022-11-30 06:06:23 +0700
committerVadim Yanitskiy <vyanitskiy@sysmocom.de>2022-11-30 06:06:31 +0700
commit8ed86879c4ea9a0ed487896b1092bc8c94d5f173 (patch)
treed3552f447b72353e0b7f5393e6426bfeb6afea59
parent02f65668559f88c0c715e43728b794b028a9f844 (diff)
configure.ac: AC_OUTPUT should be used without arguments
-rw-r--r--configure.ac12
1 files changed, 6 insertions, 6 deletions
diff --git a/configure.ac b/configure.ac
index 486588d..37c89f0 100644
--- a/configure.ac
+++ b/configure.ac
@@ -327,6 +327,9 @@ AC_MSG_RESULT([CFLAGS="$CFLAGS"])
AC_MSG_RESULT([CXXFLAGS="$CXXFLAGS"])
AC_MSG_RESULT([LDFLAGS="$LDFLAGS"])
+# TODO: do this conditionally (--enable-ms?)
+AC_CONFIG_SUBDIRS([osmocom-bb/src/host/trxcon])
+
dnl Output files
AC_CONFIG_FILES([\
Makefile \
@@ -353,10 +356,7 @@ AC_CONFIG_FILES([\
doc/examples/Makefile \
contrib/Makefile \
contrib/systemd/Makefile \
+ doc/manuals/Makefile \
+ contrib/osmo-trx.spec \
])
-
-AC_CONFIG_SUBDIRS([osmocom-bb/src/host/trxcon])
-
-AC_OUTPUT(
- doc/manuals/Makefile
- contrib/osmo-trx.spec)
+AC_OUTPUT