aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2010-05-11 18:38:06 +0800
committerHolger Hans Peter Freyther <zecke@selfish.org>2010-05-11 19:08:10 +0800
commitc1ca0ff0910b36222f14d07ca8e8b14d3ea33cc0 (patch)
tree6befcf1300e54a06497d0a9b5cd2377e3810a353
parent661e68b78f8bafec9ca330c2a64a86e8b6f9c978 (diff)
misc: Make sure PACKAGE_VERSION is getting defined with a useful content.
PACKAGE_VERSION is used by the copyright message.
-rw-r--r--openbsc/configure.in5
1 files changed, 2 insertions, 3 deletions
diff --git a/openbsc/configure.in b/openbsc/configure.in
index b21eae66e..7ebab99db 100644
--- a/openbsc/configure.in
+++ b/openbsc/configure.in
@@ -1,7 +1,6 @@
dnl Process this file with autoconf to produce a configure script
-AC_INIT
-
-AM_INIT_AUTOMAKE(openbsc, 0.3.99.8onwaves)
+AC_INIT(openbsc, 0.3.99.8onwaves)
+AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION)
dnl kernel style compile messages
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])