[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.5-145-g3742d
From: |
Ludovic Courtès |
Subject: |
[Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.5-145-g3742d77 |
Date: |
Mon, 14 May 2012 17:22:04 +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=3742d778fbc6ea879437c19aeebe09179dceffdf
The branch, stable-2.0 has been updated
via 3742d778fbc6ea879437c19aeebe09179dceffdf (commit)
from 8a74ffe88a445220f9399cc49d4808baf51651c2 (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 3742d778fbc6ea879437c19aeebe09179dceffdf
Author: Ludovic Courtès <address@hidden>
Date: Mon May 14 19:21:35 2012 +0200
Honor $(program_transform_name) for the `guile-tools' symlink.
Fixes <http://bugs.gnu.org/11451>.
Reported by Cyprien Nicolas <address@hidden>.
* meta/Makefile.am (install-data-hook): Honor $(program_transform_name).
-----------------------------------------------------------------------
Summary of changes:
meta/Makefile.am | 11 ++++++++---
1 files changed, 8 insertions(+), 3 deletions(-)
diff --git a/meta/Makefile.am b/meta/Makefile.am
index f26fc44..a05730d 100644
--- a/meta/Makefile.am
+++ b/meta/Makefile.am
@@ -1,7 +1,8 @@
## Process this file with Automake to create Makefile.in
## Jim Blandy <address@hidden> --- September 1997
##
-## Copyright (C) 1998, 1999, 2001, 2006, 2007, 2008, 2009, 2011 Free
Software Foundation, Inc.
+## Copyright (C) 1998, 1999, 2001, 2006, 2007, 2008, 2009, 2011,
+## 2012 Free Software Foundation, Inc.
##
## This file is part of GUILE.
##
@@ -28,8 +29,12 @@ EXTRA_DIST= \
# What we now call `guild' used to be known as `guile-tools'.
install-data-hook:
- cd $(DESTDIR)$(bindir) && rm -f guile-tools$(EXEEXT) && \
- $(LN_S) guild$(EXEEXT) guile-tools$(EXEEXT)
+ guild="`echo $(ECHO_N) guild \
+ | $(SED) -e '$(program_transform_name)'`$(EXEEXT)" ; \
+ guile_tools="`echo $(ECHO_N) guile-tools \
+ | $(SED) -e '$(program_transform_name)'`$(EXEEXT)" ; \
+ cd $(DESTDIR)$(bindir) && rm -f "$$guile_tools" && \
+ $(LN_S) "$$guild" "$$guile_tools"
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = guile-2.0.pc
hooks/post-receive
--
GNU Guile
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.5-145-g3742d77,
Ludovic Courtès <=