summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2015-12-31 14:12:40 +0100
committerHarald Welte <laforge@gnumonks.org>2015-12-31 14:12:40 +0100
commitef0d8ec31d3560e5f272042a3fea618e0ab1be8c (patch)
treeab45dff31584e8dfd53467b12fd9954dee5cca0f
parentc400827539172334ea722099df50687c583db234 (diff)
modernize AM_INit_AUTOMAKE
according to http://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_005fINIT_005fAUTOMAKE-invocation
-rw-r--r--src/host/layer23/configure.ac5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/host/layer23/configure.ac b/src/host/layer23/configure.ac
index 9335e66e..102d2344 100644
--- a/src/host/layer23/configure.ac
+++ b/src/host/layer23/configure.ac
@@ -1,7 +1,6 @@
dnl Process this file with autoconf to produce a configure script
-AC_INIT
-
-AM_INIT_AUTOMAKE(layer23, 0.0.0)
+AC_INIT([layer23], [0.0.0])
+AM_INIT_AUTOMAKE
dnl kernel style compile messages
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])