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=a8b80d6b29b33ea39c96e5e366a0365886b31dc8 The branch, stable-2.0 has been updated via a8b80d6b29b33ea39c96e5e366a0365886b31dc8 (commit) from ae8d8a84ef0187a3d732e43c459182ed15536dc1 (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 a8b80d6b29b33ea39c96e5e366a0365886b31dc8 Author: Ludovic Courtès <[email protected]> Date: Thu Feb 27 14:14:21 2014 +0100 build: Fix out-of-source-tree installation of libguile-2.0-gdb.scm. * libguile/Makefile.am (install-data-local): Use $< instead of just libguile-2.0-gdb.scm. Quote file names in $(INSTALL_DATA) invocation. ----------------------------------------------------------------------- Summary of changes: libguile/Makefile.am | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/libguile/Makefile.am b/libguile/Makefile.am index c7ceb16..6a631d8 100644 --- a/libguile/Makefile.am +++ b/libguile/Makefile.am @@ -468,10 +468,10 @@ install-data-local: libguile-2.0-gdb.scm esac; \ done; \ cd $$here; \ - echo " $(INSTALL_DATA) libguile-2.0-gdb.scm \ + echo " $(INSTALL_DATA) $< \ $(DESTDIR)$(libdir)/$$libname-gdb.scm"; \ - $(INSTALL_DATA) libguile-2.0-gdb.scm \ - $(DESTDIR)$(libdir)/$$libname-gdb.scm + $(INSTALL_DATA) "$<" \ + "$(DESTDIR)$(libdir)/$$libname-gdb.scm" ## This is kind of nasty... there are ".c" files that we don't want to ## compile, since they are #included. So instead we list them here. hooks/post-receive -- GNU Guile
