From 76ff38f022cc30b077bf7afb77b2a2f0b3a44560 Mon Sep 17 00:00:00 2001 From: Fabian Greffrath Date: Wed, 22 Jan 2020 08:50:02 +0100 Subject: [PATCH] remove exclamation mark from package name Turns out this was a bit too special and leads to weird replacement strings and file names. Fixes #51, thanks @chungy. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 5a768ad1..ccbb428f 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ([2.69]) -AC_INIT([Woof!], [0.9.0]) +AC_INIT([Woof], [0.9.0]) AM_INIT_AUTOMAKE([foreign]) AC_CONFIG_SRCDIR([Source/version.c]) AC_CONFIG_HEADERS([config.h])