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=fd584ec6707ae5b6e7b07fe19443b513fb0ba62b The branch, stable-2.0 has been updated via fd584ec6707ae5b6e7b07fe19443b513fb0ba62b (commit) from 4a81f5b5d3800aafbc25452e50459c1ba6e29fea (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 fd584ec6707ae5b6e7b07fe19443b513fb0ba62b Author: Ludovic Courtès <[email protected]> Date: Thu Apr 24 23:46:20 2014 +0200 build: Clean up rules for meta/{guild,guile-config}. * meta/Makefile.am (guile-config, guild): Avoid useless 'cat' invocation'. Quote all occurrences of '@'. Suggested by Eric Blake <[email protected]>. ----------------------------------------------------------------------- Summary of changes: meta/Makefile.am | 24 ++++++++++++------------ 1 files changed, 12 insertions(+), 12 deletions(-) diff --git a/meta/Makefile.am b/meta/Makefile.am index 102b797..57644bc 100644 --- a/meta/Makefile.am +++ b/meta/Makefile.am @@ -46,21 +46,21 @@ aclocal_DATA = guile.m4 guile-config: $(srcdir)/guile-config.in $(top_builddir)/config.status guile="@bindir@/`echo guile | $(SED) -e '$(program_transform_name)'`" ; \ - cat $(srcdir)/guile-config.in \ - | $(SED) -e "s,@pkgconfigdir@,$(pkgconfigdir),g" \ - -e "s,@""PKG_CONFIG@,$(PKG_CONFIG),g" \ - -e "s,@installed_guile@,$$guile,g" \ - > guile-config.out - mv guile-config.out guile-config - chmod +x guile-config + $(SED) -e "s,[@]pkgconfigdir[@],$(pkgconfigdir),g" \ + -e "s,[@]PKG_CONFIG[@],$(PKG_CONFIG),g" \ + -e "s,[@]installed_guile[@],$$guile,g" \ + < "$(srcdir)/guile-config.in" \ + > "[email protected]" + chmod +x "[email protected]" + mv "[email protected]" "$@" guild: $(srcdir)/guild.in $(top_builddir)/config.status guile="@bindir@/`echo guile | $(SED) -e '$(program_transform_name)'`" ; \ - cat $(srcdir)/guild.in \ - | $(SED) -e "s,@installed_guile@,$$guile,g" \ - -e "s,[@]PACKAGE_NAME[@],$(PACKAGE_NAME),g" \ - -e "s,[@]PACKAGE_BUGREPORT[@],$(PACKAGE_BUGREPORT),g" \ - > "[email protected]" + $(SED) -e "s,[@]installed_guile[@],$$guile,g" \ + -e "s,[@]PACKAGE_NAME[@],$(PACKAGE_NAME),g" \ + -e "s,[@]PACKAGE_BUGREPORT[@],$(PACKAGE_BUGREPORT),g" \ + < "$(srcdir)/guild.in" \ + > "[email protected]" chmod +x "[email protected]" mv "[email protected]" "$@" hooks/post-receive -- GNU Guile
