aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/configure.ac
diff options
context:
space:
mode:
authorMax <msuraev@sysmocom.de>2017-01-26 16:03:54 +0100
committerHarald Welte <laforge@gnumonks.org>2017-01-31 19:54:58 +0100
commitdac5867af5ff90d4beb70fc30a5743f60f159e3a (patch)
tree13a9cfce85b704595745cba9f2a22b171c12b99c /openbsc/configure.ac
parent3f940fc9eea40873185a240e68992e70a3e8abb4 (diff)
Remove dependency to autoconf-archive
It is generally not a good idea to add more and more external dependencies unless absolutely needed. autoconf-archive is a good example of that, as we need to update all build machines, and older OpenEmbedded versions do not appear to have (the right?) autoconf-archive recipe. Provide local copy of necessary m4 files to fix the build there. The dependency to autoconf-archive was introduced in Change-Id Ied9c950dafa65f324cf31298b13b590f56139700 Change-Id: Iacc1958b471ec3fc65307259039e1d496845f528
Diffstat (limited to 'openbsc/configure.ac')
-rw-r--r--openbsc/configure.ac3
1 files changed, 3 insertions, 0 deletions
diff --git a/openbsc/configure.ac b/openbsc/configure.ac
index 7e244bc65..6d373a5a4 100644
--- a/openbsc/configure.ac
+++ b/openbsc/configure.ac
@@ -9,6 +9,9 @@ AC_CONFIG_AUX_DIR([.])
AM_INIT_AUTOMAKE([dist-bzip2])
AC_CONFIG_TESTDIR(tests)
+dnl FIXME: Remove this once we do not need local macro copies anymore (after upgrade to newer OE?)
+AC_CONFIG_MACRO_DIRS([m4])
+
dnl kernel style compile messages
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])