summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLudovic Courtès2012-05-29 23:39:05 +0200
committerLudovic Courtès2012-05-30 00:00:51 +0200
commit11f6126e0866a7404959c16ac43ecbd3a9c3b3f6 (patch)
tree7c40d04e1dbd8d785e504c872fa34dea1487df87
parent85ffa82b6c829cd3bf9488b71d9ef4fc513e2933 (diff)
downloadskribilo-11f6126e0866a7404959c16ac43ecbd3a9c3b3f6.tar.gz
skribilo-11f6126e0866a7404959c16ac43ecbd3a9c3b3f6.tar.lz
skribilo-11f6126e0866a7404959c16ac43ecbd3a9c3b3f6.zip
build: Update `AC_INIT' invocation.v0.9.2
* configure.ac: Capitalize the package name; add a tar name and URL. Define $pkgdatadir in terms of $PACKAGE_TARNAME, not $PACKAGE_NAME.
-rw-r--r--configure.ac8
1 files changed, 5 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index fffc662..505d8e6 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2,9 +2,11 @@
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.59)
-AC_INIT([skribilo],
+AC_INIT([Skribilo],
m4_esyscmd([build-aux/git-version-gen .tarball-version]),
- [skribilo-users@nongnu.org])
+ [skribilo-users@nongnu.org],
+ [skribilo],
+ [http://nongnu.org/skribilo/])
AC_CONFIG_AUX_DIR(build-aux)
AC_CONFIG_MACRO_DIR(m4)
@@ -85,7 +87,7 @@ AM_CONDITIONAL([HAVE_PLOTICUS], [test "x$PLOTICUS" != "x"])
AM_PATH_LISPDIR
-pkgdatadir="$datadir/$PACKAGE_NAME"
+pkgdatadir="$datadir/$PACKAGE_TARNAME"
if test "x$guilemoduledir" = "x"; then
guilemoduledir="$pkgdatadir/$PACKAGE_VERSION"
fi