guile-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Guile-commits] GNU Guile branch, master, updated. release_1-9-5-1-g53da


From: Ludovic Courtès
Subject: [Guile-commits] GNU Guile branch, master, updated. release_1-9-5-1-g53da737
Date: Wed, 18 Nov 2009 11:14:27 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Guile".

http://git.savannah.gnu.org/cgit/guile.git/commit/?id=53da7372beca90a58b7401a84627815289a53d11

The branch, master has been updated
       via  53da7372beca90a58b7401a84627815289a53d11 (commit)
      from  e17b58c22e50a515a1c14bd4f93372bf3df75b9a (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 53da7372beca90a58b7401a84627815289a53d11
Author: Ludovic Courtès <address@hidden>
Date:   Wed Nov 18 12:13:31 2009 +0100

    Fix $(pkgdatadir) & co. so they refer to $(PACKAGE_TARNAME), not $(PACKAGE).
    
    This fixes a regression introduced in
    4f02b98d0ed4a314916c69a225d7a45dda3f5f8c ("Use Gnulib's
    `version-etc-fsf' for `--version' and `--help' output."), which led
    $(pkgdatadir) & co. to contain the string "GNU Guile" instead of
    "guile".
    
    * configure.ac (pkgdatadir, pkgincludedir, pkglibdir, pkglibexecdir):
      New variables.

-----------------------------------------------------------------------

Summary of changes:
 configure.ac |   13 ++++++++++++-
 1 files changed, 12 insertions(+), 1 deletions(-)

diff --git a/configure.ac b/configure.ac
index 476a73c..65ba073 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1544,9 +1544,20 @@ AC_SUBST(top_builddir_absolute)
 top_srcdir_absolute=`(cd $srcdir && pwd)`
 AC_SUBST(top_srcdir_absolute)
 
+dnl Override Automake 1.11's broken definitions.
+dnl See http://thread.gmane.org/gmane.comp.sysutils.automake.bugs/4803
+dnl and info "(automake) Uniform" and info "(autoconf) Initializing configure".
+pkgdatadir="$datadir/$PACKAGE_TARNAME"
+pkgincludedir="$includedir/$PACKAGE_TARNAME"
+pkglibdir="$libdir/$PACKAGE_TARNAME"
+pkglibexecdir="$libexecdir/$PACKAGE_TARNAME"
+AC_SUBST([pkgdatadir])
+AC_SUBST([pkgincludedir])
+AC_SUBST([pkglibdir])
+AC_SUBST([pkglibexecdir])
+
 dnl We need `sitedir' in `guile-1.8.pc'.
 dnl Note: `sitedir' must be kept in sync with `GUILE_SITE_DIR' in `guile.m4'.
-pkgdatadir="$datadir/guile"
 sitedir="$pkgdatadir/site"
 AC_SUBST([sitedir])
 


hooks/post-receive
-- 
GNU Guile




reply via email to

[Prev in Thread] Current Thread [Next in Thread]