From 27dcdd37984e9e9da07eb6ce5a3991bbffa1bd1f Mon Sep 17 00:00:00 2001 From: Andreas Metzler Date: Sun, 29 Aug 2010 14:41:33 +0200 Subject: [PATCH] Pass tarname argument to AC_INIT MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit If AC_INIT is invoked without tarname argument PACKAGE_TARNAME and PACKAGE will be sanitized (lowercased, and all characters other than alphanumerics and underscores are changed to ‘-’.) For windowmaker this has the sideeffect of changing install directories, util/wmaker.inst installs stuff to #pkgdatadir# which suddenly is /usr/share/windowmaker instead of /usr/share/WindowMaker. Supplement AC_INIT invokation with tarname (and while we are at it url) argument to fix this. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index d48cc991..163216e3 100644 --- a/configure.ac +++ b/configure.ac @@ -11,7 +11,7 @@ dnl dnl -AC_INIT(WindowMaker, 0.94.0-crm) +AC_INIT(WindowMaker, 0.94.0-crm, , WindowMaker, http://www.windowmaker.info/) AC_CONFIG_SRCDIR(src/WindowMaker.h) AC_CONFIG_MACRO_DIR([m4]) AM_CONFIG_HEADER(src/config.h)