From 0b53175846e704fc4dd4cf8b4590a86db63e50e6 Mon Sep 17 00:00:00 2001 From: Dwight Engen Date: Thu, 4 Oct 2012 12:28:38 -0400 Subject: [PATCH] fix "make rpm" RPM doesn't like "-" in the version number and gives: "error: line 24: Illegal char '-' in: Version: 0.8.0-rc2" Other packages (bind-utils for example) have used . instead of - as a seperator. Signed-off-by: Dwight Engen Signed-off-by: Serge Hallyn --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 32e04678f..c33d8ec4a 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ # -*- Autoconf -*- # Process this file with autoconf to produce a configure script. -AC_INIT([lxc], [0.8.0-rc2]) +AC_INIT([lxc], [0.8.0.rc2]) AC_CONFIG_SRCDIR([configure.ac]) AC_CONFIG_AUX_DIR([config])